help me please... can somebody tell me how to compress an access database by vb6.0 coding?
please help me... how to compress an access database by vb6.0 coding
Collapse
X
-
Tags: None
-
Also, here are links to some other discussions at TheScripts which covered this. (Note, the highlighting just reflects the search terms I entered to find them)...
Comment
-
-
i have another question to ask:
i want to compress my database when close my form but why when i closed, it shows a message box says that the database were used exclusively by admin
can somebody give me the solutions please....Comment
-
Hi,
Before writing the Code for Compact, you have to Close the Connection to database. You may also get that error, if the database is "Password" protected.. you will have to pass the Pwd in Compact statement.
Check this :
DBEngine.Compac tDatabase "C:\MyDB.md b" _
,"C:\NewDB.mdb" , , , ";pwd=mypwd "
Regards
VeenaComment
Comment