how to bring a report to front & full size?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

good day all,

I have a report that I open from a form, I would like the report to open
full screen as well as in front of my form...

I know this should be simple but I cannot figure it out..

Thanks,

Brook
 
to maximize the report, add a

DoCmd.Maximize

to the report's Load event.

if your open form's Popup property is set to Yes, you'll need to set the
form's Visible property to No when you open the report, and then set it back
to Yes when you close the report.

hth
 
Tina,

I changed the report POP Up value to yes and that worked great...

Thanks for your help.

Brook
 
well, i gave you poor advice on the second half, but you were able to turn
it into a solution - good job! and you're welcome :)
 
Back
Top