I have a Menu Form. When the User selects the button 'Main' it opens the form 'MAIN' as seen in the code below
Code:
Private Sub Command0_Click()
DoCmd.OpenForm "MAIN"
End Sub
The form should ideally leave the DoCmd statement and hit the MAIN Form__Load event immediately. The issue is it takes a few seconds for the code to reach the beginning of MAIN_Load and I am unsure why. Inbetween this time the bottom of Access says 'Calculating . . .' and 'Running Query', although there is no code that requires a query to run when this is called. The RecordSource of MAIN is "SELECT * FROM APN_Status" which is just a table, no query involved. Does it just take a while cause my form is complicated (navigation control with multiple pages, some with navigation controls themselves.)
How can I figure out what is happening between this event??