Okay I am suffering from the process of migrating from XP to 2007.
I have a main form that has multiple subforms that are hidden on loading in the main form’s load event. I have set all forms with the visible property set to False using Me.frmLearners.Visible = False.
I then have a series of buttons that changes the visible property either False or True. I save the VBA editor and reload the frmMain but clicking the button does not make the form visible.
The click event looks like this
Private Sub cmdLearners_Click()
Me.frmClasses.Visible = False
Me.frmLearners.Visible = True
End Sub
I would expect that the frmLearners would be visible. But it isn’t.
Thanks for any help.
Fay