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...
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...
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 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>...
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...
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.