Maximizing screen

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

Guest

Hello, I have an Access 97 app and I'm trying to get a report to print without a modal screen appearing over it. I'm currently making the modal screen invisbile when calling the report and then making it visible again when the report is called. The problem I have is the screen underneath the modal screens are no longer Maximizied. How would I force a screen that I don't have focus on to be mazimizied

Thank

Don
 
Don,

If your purpose is to print the report, as your question implies, why
don't you just print it? That way there will be no need to see it or
maximize it or anything else.

Otherwise, doesn't this work to maximize the report preview?...

Me.Visible = False
DoCmd.OpenReport "MyReport", acViewPreview
DoCmd.Maximize
 
Back
Top