At 04:27 PM 6/22/2004 -0500, Javier Valencia wrote:

When I run the following code:

CLS
PAUSE 3 USING 'Please wait while Invoice values are recalculated...' +
CAPTION 'Fleet Invoicing...' +
OPTION ICON_FILE hourgls2.gif
-- run calculation with the hour glass gif file executing
CLS
PAUSE 3 USING 'This is the second message' CAPTION 'TEST' ICON SERIOUS
RETURN

When it gets to the second PAUSE command the GIF file specified on the
previous PAUSE statement still displays instead of the ICON SERIOUS,
shouldn't the CLS command clear this condition?

You can use any animated GIF file instead of the one in the code.

Javier,

Here's the tip of the day, for you!

Use the following code (type exactly as following):

PAUSE 3 USING 'This is the second message' +
CAPTION 'TEST' +
ICON SERIOUS +
OPTION ICON_FILE ClearIconFile
RETURN

Enjoy and make sure to have fun!

Very Best R:egards,

Razzak.



Reply via email to