Hi All
I have a small MS Access Database that I open via VB6 ADO. I want to save a password to the database and did so in Access via Tools/Security after I opened it Exclusively
When adding the VB6 code :
Set Ecn = New ADODB.Connection
Ecn.ConnectionString = cmd
' (Note : The cmd is correctly defined)
Ecn.Open , "admin", "mypassword"
I get an error saying the workgroup file is missing.. I want this app to reside on a stand alone PC, so no user identification is really needed, just a simple password. I dont want anyone to be able to open the database vir Access.
Any ideas ??
I have a small MS Access Database that I open via VB6 ADO. I want to save a password to the database and did so in Access via Tools/Security after I opened it Exclusively
When adding the VB6 code :
Set Ecn = New ADODB.Connection
Ecn.ConnectionString = cmd
' (Note : The cmd is correctly defined)
Ecn.Open , "admin", "mypassword"
I get an error saying the workgroup file is missing.. I want this app to reside on a stand alone PC, so no user identification is really needed, just a simple password. I dont want anyone to be able to open the database vir Access.
Any ideas ??