Jim
The SHOW_CANCEL_DIALOG OFF is part of the print command options. Before your print command SET MESSAGES OFF SET ERROR MESSAGES OFF PAUSE 3 USI ............. PRINT KayParkOpenOrder WHERE SORTONE IN (BL,BR,LR,FP,OT,PB,PC,PT,RP) AND SHIPDATE + IS NULL AND MODEL# NOT CONTAINS 'SPBL' ORDER BY TRANSDATE CONTROL# + OPTION PRINTER + |SHOW_CANCEL_DIALOG OFF SET MESSAGES ON SET ERROR MESSAGES ON To see all of the OPTIONS for the print command at the R:>HELP PRINT This will give you a list of all options. Buddy From: [email protected] [mailto:[email protected]] On Behalf Of Jim Belisle Sent: Monday, May 04, 2009 7:21 AM To: RBASE-L Mailing List Subject: [RBASE-L] - RE: Print many reports Buddy, I am not a programmer so be patient with me as I ask these questions. Are you saying I should add the following to the print statement? SET MESSAGES OFF SET FEEDBACK OFF OPTION SHOW_CANCEL_DIALOG OFF Then at the end of the printing I would turn them all back on? Jim ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Walker, Buddy Sent: Monday, May 04, 2009 6:13 AM To: RBASE-L Mailing List Subject: [RBASE-L] - RE: Print many reports Jim Make sure messages are off. Add the OPTION SHOW_CANCEL_DIALOG OFF to your print statement. You may also want to check and make sure Feedback is off Buddy From: [email protected] [mailto:[email protected]] On Behalf Of Jim Belisle Sent: Monday, May 04, 2009 7:02 AM To: RBASE-L Mailing List Subject: [RBASE-L] - RE: Print many reports Buddy, Thanks for the input. I applied your suggestion and the gauge window does come up. However another screen also comes up (it must be a default setting) that states "accessing data" and also the number of pages it is creating. It blocks the gauge window. Is there a way to suppress this default window? Jim ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Walker, Buddy Sent: Wednesday, April 29, 2009 10:43 AM To: RBASE-L Mailing List Subject: [RBASE-L] - RE: Print many reports Jm Before each print statement put PAUSE 3 USING 'Calculating ... Please Stand By ...' + CAPTION ' Pause 3 with Gauge ' + ICON WINDOWS OPTION GAUGE_VISIBLE ON + |GAUGE_COLOR RED + |GAUGE_INTERVAL 10 + |MESSAGE_FONT_NAME VERDANA + |MESSAGE_FONT_SIZE 10 + |MESSAGE_FONT_COLOR WHITE + |THEMENAME Steel Blue Open each report and add before generate eep add CLS PAUSE 3 USING 'Calculating ... Please Stand By ...' + CAPTION ' Pause 3 with Gauge ' + ICON WINDOWS OPTION GAUGE_VISIBLE ON + |GAUGE_COLOR RED + |GAUGE_INTERVAL 10 + |MESSAGE_FONT_NAME VERDANA + |MESSAGE_FONT_SIZE 10 + |MESSAGE_FONT_COLOR WHITE + |THEMENAME Steel Blue RETURN Then in the after generate eep add CLS RETURN That should give you a Pause before each print and during the generation of the report. Buddy From: [email protected] [mailto:[email protected]] On Behalf Of Jim Belisle Sent: Wednesday, April 29, 2009 9:45 AM To: RBASE-L Mailing List Subject: [RBASE-L] - Print many reports I am using a Group function to print multiple reports with one click. It is working but I want advice if there is a better way to do this than what I have below. I use the pause 3 with a Guage option but that option does not seem to work. Just two of the reports are shown below. Jim -- All Open Orders by Transdate, Control# -- -- Open Orders (In House) by Transdate, Control# -- PRINT KayParkOpenOrder WHERE SORTONE IN (BL,BR,LR,FP,OT,PB,PC,PT,RP) AND SHIPDATE + IS NULL AND MODEL# NOT CONTAINS 'SPBL' ORDER BY TRANSDATE CONTROL# + OPTION PRINTER + PAUSE 3 USING 'Calculating ... Please Stand By ...' + CAPTION ' Pause 3 with Gauge ' + ICON WINDOWS OPTION GAUGE_VISIBLE ON + |GAUGE_COLOR RED + |GAUGE_INTERVAL 10 + |MESSAGE_FONT_NAME VERDANA + |MESSAGE_FONT_SIZE 10 + |MESSAGE_FONT_COLOR WHITE + |THEMENAME Steel Blue CLEAR ALL VAR -- Open Orders (Speedy Bleachers) by Transdate, Control# -- PRINT KayParkOpenOrder WHERE SHIPDATE IS NULL AND SORTONE = 'BL' AND + MODEL# CONTAINS 'SPBL' ORDER BY TRANSDATE CONTROL# + OPTION PRINTER + PAUSE 3 USING 'Calculating ... Please Stand By ...' + CAPTION ' Pause 3 with Gauge ' + ICON WINDOWS OPTION GAUGE_VISIBLE ON + |GAUGE_COLOR RED + |GAUGE_INTERVAL 10 + |MESSAGE_FONT_NAME VERDANA + |MESSAGE_FONT_SIZE 10 + |MESSAGE_FONT_COLOR WHITE + |THEMENAME Steel Blue CLEAR ALL VAR

