
05-20-2002, 02:46 PM
|
|
|
Quote:
Originally posted by Thinker
You aren't opening a second copy of Access with automation, you
are just opening a database object with DAO. You would have to
use the CreateObject() function to start a new instance of Access.
|
Yes, thank you...
I'd been looking for this for a couple of days now. I had been opening other databases from a .bat file. Where I work, we have slowly (somehow) started using three different OSes (98, NT and 2000) and the minor differences in the .bat file were annoying me. I now have is switched to VB(A) and it is due to Thinker pointing out the CreateObject() function to start my other instance of Access. From there I loaded my database into it with the GetObject() function and all is well. So much easier than the .bat file.
Thanks for your help Thinker (even though you didn't know you were helping me!) 
|
|