Thanks, Paul.
I took your suggestion and modified it a little. Seems to work well.
Private Sub ReportsToggleButton_Click()
If (Me.ReportsToggleButton) Then
DoCmd.OpenForm "frmReports"
Else
If CurrentProject.AllForms("frmReports").IsLoaded = True Then
DoCmd.Close acForm, "frmReports"...
Can someone please show me or guide me to a good resource to figure out how to use a toggle button within one form to open/close a separate form? I would like to have the form appear when the toggle button is clicked and close when the toggle button is clicked again.
For whatever reason, I...