Hidden Reports

Davef28

Registered User.
Local time
Today, 20:00
Joined
Feb 6, 2002
Messages
51
I have all my forms maximised. When I try and do a report in preview it is hidden behind my forms. What can I do to make them appear.

Thanks
 
If they are Popup forms then you have to toggle the forms visible property
 
Thanks Guys. I now have the following code

Private Sub Report_Close()
[Forms]![Mainmenu].Visible = True
[Forms]![Reporting].Visible = True
[Forms]![Reporting].SetFocus
End Sub

Private Sub Report_Open(Cancel As Integer)
Me.Visible = True
[Forms]![Mainmenu].Visible = False
[Forms]![Reporting].Visible = False
End Sub


However when I close the report the form Reporting has Focus but I cannot click or key on it. Any help appreciated.
 

Users who are viewing this thread

Back
Top Bottom