Please Help!? Report Maximising

  • Thread starter Thread starter Guest
  • Start date Start date
Thanx that works great.
Is it possible to keep the Form, from which the button is clicked, not
maximising!
--
Regards

Ashley Smart


Brendan Reynolds said:
Private Sub Report_Open(Cancel As Integer)

DoCmd.Maximize

End Sub
 
Only if you set the Popup property to 'Yes'.

--
Brendan Reynolds (MVP)


A. Smart said:
Thanx that works great.
Is it possible to keep the Form, from which the button is clicked, not
maximising!
 
If what you are wanting is to prevent the calling form remaining maximized
after the report is closed, you can use the following:

Private Sub Report_Close()
DoCmd.Restore
End Sub

HTH,

Rob

A. Smart said:
Thanx that works great.
Is it possible to keep the Form, from which the button is clicked, not
maximising!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top