Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Stegmite

    DBSign

    Just a quickie. Does anyone have any experience with DBSign, using it within a VB.NET environment?
  2. Stegmite

    Converting Access module to VB.NET

    Posted on the wrong forum before: I have an Access program that reads information from an ID card inserted into a device (keyboard, card reader, etc). I am supposed to convert it to ASP.NET web form. The problem I'm having is being able to actually connect to the keyboard, and get the...
  3. Stegmite

    Converting code from Access to .NET

    Thanks for the verification.
  4. Stegmite

    Converting code from Access to .NET

    Here's the code within the module: Option Compare Database Option Explicit 'api declarations Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As...
  5. Stegmite

    Converting code from Access to .NET

    I have an Access program that reads information from an ID card inserted into a device (keyboard, card reader, etc). I am supposed to convert it to ASP.NET web form. The problem I'm having is being able to actually connect to the keyboard, and get the information from the card. If anyone has...
  6. Stegmite

    Passing a variable with datagrid

    I don't understand where this goes, so here's my DG code <asp:DataGrid id=dgUser runat="server" DataSource="<%# dsTMSUSER_Orig %>" AutoGenerateColumns="False"> <Columns> <asp:BoundColumn DataField="TMSUSER_UID" SortExpression="TMSUSER_UID" HeaderText="User"></asp:BoundColumn>...
  7. Stegmite

    Passing a variable with datagrid

    I have a datagrid that shows 5 different numbers per record. I've created a Hyperlink column for each, and when they click on the number I want them to go to the same page, no matter what they click on. But I need to pass the number that they clicked on to the next page. How do I do this?
  8. Stegmite

    Deleting Local Folder

    So it's impossible to do via Visual Studio and VB.NET?
  9. Stegmite

    Deleting Local Folder

    I'm trying to delete a user's history and cookies on a local machine. However, when I try to delete the folder(s), I get an error saying that the folder has items in it and can't be deleted. How can I go about doing this?
  10. Stegmite

    Date/Time convert

    bump
  11. Stegmite

    Date/Time convert

    I have a Gregorian date/time pulling from a database onto a datagrid. How can I convert it into a Julian calendar format via the Data Formatting Expression area?
  12. Stegmite

    Unstable Access back-end

    I have a simple "online store" set up using Visual Studio as a front end and Access(2k) as a back end. I have 3 pages, one to display the items in a datagrid, one to verify the item and enter a quantity desired, and third is a "shopping cart". The users don't actually pay for it on this site...
  13. Stegmite

    Printing

    sorry for the misplaced post, thanks for the link
  14. Stegmite

    Printing

    yes
  15. Stegmite

    Printing

    bump
  16. Stegmite

    Printing

    Yes. The customer wants a button, even though every browser gives you about 5 options.
  17. Stegmite

    Printing

    This may sound like a stupid question, but what's the syntax to print the current page?
  18. Stegmite

    Running javascript via an aspx.vb file

    I'm developing with Visual Studio, and have little training in JavaScript. I'm trying to run a premade series of scripts that allow you to have a "shopping cart" without a database to store the orders, using cookies. All in all I'm trying to put this:<FORM NAME=order ACTION="managecart.html"...
  19. Stegmite

    Won't accept SQL LIKE

    I'm trying to filter a datagrid on the fly using this: On Page Load... Dim mySort As String If Session("Sort") = "" Then mySort = "SELECT * FROM Import" OleDbDataAdapter1.SelectCommand = New OleDb.OleDbCommand(mySort, OleDbConnection1) OleDbDataAdapter1.Fill(dsInv) dgInv.DataBind() Else...
  20. Stegmite

    Getting Null instead of value

    I am setting values, I just didn't put that part in. vNewFunds = vFunds - vCost The column is a Number field

Part and Inventory Search

Back
Top