Difference between revisions of "ShowProgressBar"

 
Line 1: Line 1:
 
[[category:User-interface functions]]
 
[[category:User-interface functions]]
  
{{stub}}
+
(not documented prior to 4.0)
 +
 
 +
= Declaration =
 +
 
 +
ShowProgressBar(title,text:Text atomic; p:number atomic)
 +
 
 +
= Description =
 +
Displays or updates a programmable dialog containing a progress bar.  The first time it is called with p<1, the dialog appears.  When 0<=p<1, a Cancel button is displayed and the progress meter is updated to the indicated proportion, allowing computation to continue while it is visible.  If the user presses Cancel, the computation is aborted.  When p=1, an OK button is shown and the dialog waits until OK is pressed to return and then disappears.  The dialog is also removed when p>1 or a computation completes.

Revision as of 08:55, 9 February 2007


(not documented prior to 4.0)

Declaration

ShowProgressBar(title,text:Text atomic; p:number atomic)

Description

Displays or updates a programmable dialog containing a progress bar. The first time it is called with p<1, the dialog appears. When 0<=p<1, a Cancel button is displayed and the progress meter is updated to the indicated proportion, allowing computation to continue while it is visible. If the user presses Cancel, the computation is aborted. When p=1, an OK button is shown and the dialog waits until OK is pressed to return and then disappears. The dialog is also removed when p>1 or a computation completes.

Comments


You are not allowed to post comments.