S
SAG
One of my clients wants me to write an Access VBA program
for his older equipment. I started a new blank database
and added a connection object and set it up:
Public adoConnection as Connection, Dim rs as recordset
--------------------------------------------------
Public Sub OpenConnection()
'Create the global connection
adoConnection.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\Client\ClientData.mdb;"
End Sub
When I attempted to add:
Set rs = new ADODB.Recordset
it wasn't available in the popup menu. Can I use ADO in
Access 97? Do I need to download a DLL file?
Please advise,
STeve
for his older equipment. I started a new blank database
and added a connection object and set it up:
Public adoConnection as Connection, Dim rs as recordset
--------------------------------------------------
Public Sub OpenConnection()
'Create the global connection
adoConnection.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\Client\ClientData.mdb;"
End Sub
When I attempted to add:
Set rs = new ADODB.Recordset
it wasn't available in the popup menu. Can I use ADO in
Access 97? Do I need to download a DLL file?
Please advise,
STeve