how to bring a report to front & full size?

B

Brook

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
 
T

tina

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
 
B

Brook

Tina,

Ok... got the maximzie, but the Forms popup value is already set to "NO".

Brook
 
B

Brook

Tina,

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

Thanks for your help.

Brook
 
T

tina

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 :)
 
Top