How can I set the form to background when opening a report, w/o using IsLoaded to visible. I don't want the form invisible, I want it set to the background of the Opening report.
Thanks
How can I set the form to background when opening a report, w/o using IsLoaded to visible. I don't want the form invisible, I want it set to the background of the Opening report.
Thanks
Roberta Price <img src=/S/cheers.gif border=0 alt=cheers width=30 height=16>

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Open the form first, then open the report from the form using DoCmd.OpenReport, The form will automatically be behind the report.
Thanks Hans, I resolved it this way:
DoCmd.OpenReport stDocName, acViewPreview
DoCmd.SelectObject acReport, stDocName
Roberta Price <img src=/S/cheers.gif border=0 alt=cheers width=30 height=16>