hello
I'm running XP and using access 2003
Every time i try to run my database i get the following error
Runtime error -2147467259 (80004005) The database has been placed in a state by Admin, that prevents the machine from being opened or locked
I can just ignore the message by clicking end, and it will work, but i'm worried it will give me problems later because it will be accessed by all the users in the company. sometimes i get a message saying i cannot save any the changes that I've made.
When the error pops up, if i click on debug it highlights the "ado.Open strConnection" . as shown below
i've tried changing the references but that didn't help the situation and i havn't installed or uninstalled any software of late.
Thankyou for your help
I'm running XP and using access 2003
Every time i try to run my database i get the following error
Runtime error -2147467259 (80004005) The database has been placed in a state by Admin, that prevents the machine from being opened or locked
I can just ignore the message by clicking end, and it will work, but i'm worried it will give me problems later because it will be accessed by all the users in the company. sometimes i get a message saying i cannot save any the changes that I've made.
When the error pops up, if i click on debug it highlights the "ado.Open strConnection" . as shown below
Code:
Dim ado As ADODB.Connection strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & CurrentProject.Path & "\Table1.mdb;" ado.Open strConnection
Thankyou for your help
Comment