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...
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...
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?
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?
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?
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...
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"...
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...
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...
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.
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.
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?
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.