Hello, I have an I think simple Question.
How can I use the VB 6.0 data control with an Access Database which has a password. Is there a way to access the recordsource and password without having to type
set datbase = Opendatabase (......)
Johan
Printable View
Hello, I have an I think simple Question.
How can I use the VB 6.0 data control with an Access Database which has a password. Is there a way to access the recordsource and password without having to type
set datbase = Opendatabase (......)
Johan
.OpenDatabase("Publishers", _
dbDriverNoPrompt, True, _
"ODBC;DATABASE=pubs;UID=sa;PWD=xxxx;DSN=Publishers")
Yes I know Opendatabase command, but I want to work with the datacontrol.
I wonder is there a way to work with the datacontrol and Access databases + passwords
Johan