UpdateStatus |
Top Previous Next |
×V2.1Ø
Syntax - Form 1: UpdateStatus <List Name> Where: <List Name> is the user defined name that is assigned to the list.
Description: This command is used to update the progress information in EMUE's main tab from within the script. <List Name> identifies a list defined in the script. The status is determined by the size of the list and the current record that is being processed. In most cases, the first form of this command is sufficient. For more customizable control, use the following form of UpdateStatus.
Sample: UpdateStatus MyList
Syntax - Form 2: UpdateStatus <Current Item Number> [<Total Item Count>] Where: <Current Item Number> is an integer or a variable that contains an integer. <Total Item Count> is an integer or a variable that contains an integer.
Description: This command uses <Current Item Number> and <Total Item Count> to update the progress information on EMUE's main tab. This form of the command allows the user to specify the update information. Once <Total Item Count> has been used once with UpdateStatus, UpdateStatus can be used with only <Current Item Number> being specified.
Sample: GetListCount ListCountVariable MyList GetListPosition ListPositionVariable MyList UpdateStatus ListPositionVariable ListCountVariable
For an example of UpdateStatus used with Database records, see GetODBCData.
|