A family of Microsoft relational database management systems designed for ease of use.
What I am curious about now is: Can I put certain common forms in the referenced accde and use them in the database?
I haven't ever done this, but it's my understanding that you can have common forms in the referenced ACCDE, but that ACCDE must also provide a public method to open them. Then you can call that method to open the form.
So, Dirk, would that be the same as calling an Add-in? My add-ins use a public function like this:
Public Function Entry_DBBuilder()
'Purpose : Entry point required for Add-In manager.
' Opens frmMain.
DoCmd.OpenForm "frmMain"
End Function