Opening a form in another mdb

J

Jim Pockmire

I have set a reference to another mdb. Is it possible to use
"DoCmd.OpenForm" to open a form in the referenced (library) database? If so,
how do I refer to the form in the calling mdb?
 
A

Alex Dybenko

try the following:
in referenced mdb create a public function which opens desired form, and
call this function from main mdb
 
Top