I am trying to auto run two buttons I have on my Form when it loads upon opening the database.
Here is what I have tried so far without much luck (did not run anything). Any help would be greatly appreciated.
Items to note:
cmdRun and cmdExport's Subs are all set to public.
Private Sub Form_Load()
CmdRun_Click
CmdExport_Click
End Sub
other try:
Private Sub Form_Load()
Call cmdRun_Click
Call CmdExport_Click
End Sub