
Opening an .mdb file from VB into Access
this should be close, if not check the help for the methods mentioned:
dim db as database
dim rs as recordset
set db = opendatabase("c:\tmp.mdb")
set rs = db.openrecordset("select * from SomeTable")
....
Quote:
> The subject says it all;
> I'd like to be able to programmatically open up a filepath "c:\...\TMP.mdb"
> into MS Access.
> What's the command line for this?
> Thanks.