G Guest Sep 19, 2005 #1 Is it possible to maximise a Print Preview window once the button is clicked? Cheers
G Guest Sep 19, 2005 #3 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 Click to expand...
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 Click to expand...
B Brendan Reynolds Sep 19, 2005 #4 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! Click to expand...
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! Click to expand...
R Rob Parker Sep 20, 2005 #5 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! Click to expand...
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! Click to expand...