Valid on Windows only
The ProgressText function copies the string to the progress text field in the Main window.
Display function format:
ProgressText(text as String) as Boolean
Defines text for the progress text field.
On successful completion, the function returns TRUE, otherwise it returns FALSE.
Example:
This example shows the ProgressBar and ProgressText functions.
Dim counter as Integer
For counter = 1 TO 10
ProgressBar(counter * 10)
ProgressText("Now processing : " + Str(counter) )
Sleep(500) 'Wait half second
Next
|
Copyright © 2014 CA Technologies.
All rights reserved.
|
|