Hi
I have VB application and use Access 97 as my DB. The application works fine on my machine. I created a setup of it and ran the setup on another machine and it still works. Now I want the application to work on the CD as well. i.e Users must have a choice of running the application on CD or they can run a setup of it on their machines. The error message that I get when I run the app on CD is:
runtime error '-2147467259(80004005)'
Could not delete from specified files.
My app has to delete some records on the Database when it launches(start). I think some DLLs are missing.
What am I doing wrong. I connect like this to DB:
Set cnMvConnection = New ADODB.Connection
cnMvConnection.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strMvFilePathName & ";Persist Security Info=False")
strMvFilePathName is my Access database.
Please Help.
I have VB application and use Access 97 as my DB. The application works fine on my machine. I created a setup of it and ran the setup on another machine and it still works. Now I want the application to work on the CD as well. i.e Users must have a choice of running the application on CD or they can run a setup of it on their machines. The error message that I get when I run the app on CD is:
runtime error '-2147467259(80004005)'
Could not delete from specified files.
My app has to delete some records on the Database when it launches(start). I think some DLLs are missing.
What am I doing wrong. I connect like this to DB:
Set cnMvConnection = New ADODB.Connection
cnMvConnection.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strMvFilePathName & ";Persist Security Info=False")
strMvFilePathName is my Access database.
Please Help.