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: *

  • Users: Stegmite
  • Content: Threads
  • Order by date
  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

    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...
  4. 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?
  5. 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?
  6. 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?
  7. 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...
  8. Stegmite

    Printing

    This may sound like a stupid question, but what's the syntax to print the current page?
  9. 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"...
  10. 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...
  11. Stegmite

    Getting Null instead of value

    Dim vNewFunds As Integer Dim myNewFunds As String = "UPDATE tblChar SET Cash = " & vNewFunds & " WHERE Username = '" & vName & "'" Dim myNewFundsCommand As New OleDb.OleDbCommand(myNewFunds, OleDbConnection1) This is my SQL statement to update a value on an Access backend. Whenever I run the...
  12. Stegmite

    Opening programs

    Is it possible to open programs via Visual Studio? I would like to have a button that opens the .mdb file stored on the database.
  13. Stegmite

    Editing text

    I'm trying to allow the user to edit any information stored in the database. I've tried several combinations, but the text keeps returning to normal after I click a submit button. Please advise.
  14. Stegmite

    Sending info to a new page

    How can I take information from one page (i.e. variable information) and send it to another page? I have a "filter" page that a customer narrows the information, and then when they click a button I want a "printer-friendly" page to pop up with the narrowed info.
  15. Stegmite

    Getting a number from a select max statement?

    I'm trying to get the highest number in a column, then add 1 to it (for unique contraints). SELECT MAX(USER_ID) FROM CLIPR.USERS; How can I get the number that this comes up with?
  16. Stegmite

    Insert issues, will someone look and help?

    This is my code to insert a record into an Oracle 10gDB, can someone point me on the right track of what to do? Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load OracleDataAdapter1.Fill(dsUsers) OracleConnection1.Open() End...

Part and Inventory Search

Back
Top