At 03:13 PM 10/4/2009, Manuel wrote:
I know there is a way but I simply forgot how to eliminate the OPTION GAUGE or METER when you use it in a PAUSE command. The problem is that once you use it all other pause command will appear with the look and feel of these previously selected options.
Manual, Here are a few examples that should help you understand the options of PAUSE 3 command with and without the GAUGE. -- Example 01 (Simple PAUSE 3 Command) CLS PAUSE 3 USING 'Calculating ... Please Stand By ...' + CAPTION 'Simple PAUSE 3 Command' ICON APP + OPTION MESSAGE_FONT_NAME VERDANA + |MESSAGE_FONT_SIZE 10 + |MESSAGE_FONT_COLOR RED + |THEMENAME R:BASE Rocks! RETURN -- Example 02 (Simple PAUSE 3 Command with GAUGE) CLS PAUSE 3 USING 'Calculating ... Please Stand By ...' + CAPTION 'Pause 3 with Gauge ' ICON APP + OPTION GAUGE_VISIBLE ON + |GAUGE_COLOR 2708091 + |GAUGE_INTERVAL 10 + |MESSAGE_FONT_NAME VERDANA + |MESSAGE_FONT_SIZE 10 + |MESSAGE_FONT_COLOR RED + |THEMENAME R:BASE Rocks! RETURN Hope that helps! Very Best R:egards, Razzak.

