Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Run Module on Back End Linked Table from Front End?

Status
Not open for further replies.

mmogul

IS-IT--Management
Dec 1, 2003
218
US
I want to run a macro or module that resides on the back-end database but call this module from the front end. Is this possible? In this case, both the front-end and back-end are mdb files.

If so, how?

Thanks.... Mark
 
Code:
Dim AppAccess As New Access.Application
Set AppAccess = CreateObject("Access.Application")
AppAccess.OpenCurrentDatabase ("c:\issues.mdb")
AppAccess.Visible = True
AppAccess.DoCmd.RunMacro "marconame"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top