I use coded buttons to move between the different forms in my database. All the forms are a similar design and colour and all open as maximised.
I have bought a new screen and now when I move between the forms there is a lot of jumping around as one form opens and the other closes.
The typical code would be
Does anyone have any hints, tips or ideas on what I can do to improve the situation?
I have bought a new screen and now when I move between the forms there is a lot of jumping around as one form opens and the other closes.
The typical code would be
Code:
Private Sub btnGoToPrintReports_Click()
DoCmd.OpenForm "frmSboardPrintRpts"
DoEvents
DoCmd.Close acForm, "frmSboard", acSaveYes
End Sub
Does anyone have any hints, tips or ideas on what I can do to improve the situation?