Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get rid of " Printing... " window in report printing

Status
Not open for further replies.

newtofoxpro

Programmer
Sep 16, 2007
301
IN
while printing report from ... small window appear.. I wish to hide it without flashing..

Thanks & Best Regards.
 
Or is meant to put in report's header band property [on entry]
Code:
IF WEXIST("Printing...")
  MOVE WINDOW "Printing..." TO -1000,-10
ENDIF
This moves the small window which is shown during printing outside the visibility on the screen.

-Bart
 
Be careful about moving windows "off screen". There might be a second monitor "out there" and it can be on any side of the primary.

Having arbitrary status windows start popping up on the secondary monitor makes users giggle at you.
 
You are right. I started using this 'solution' (possibly on advice from the forum here) over ten years ago when secundairy monitors did not exist for almost all users.
If the scenario you described might occur than possibly (-1000,-10) might be changed into (-2000,-500) or whatever values as long as that causes the window to 'disappear'.

-Bart
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top