Opening a form in another mdb

  • Thread starter Thread starter Jim Pockmire
  • Start date Start date
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?
 
try the following:
in referenced mdb create a public function which opens desired form, and
call this function from main mdb
 
Back
Top