Legato
Legato

GoFiler Legato Script Reference

 

Legato v 1.4j

Application v 5.22b

  

 

Chapter FiveGeneral Functions (continued)

ProgressOpen Function

Overview

The ProgressOpen function displays a progress window.

Syntax/Parameters

Syntax

int = ProgressOpen ( [string caption], [int delay], [dword options] );

Parameters

caption

An optional string containing the caption for the window.

delay

An int containing a number of milliseconds to wait before displaying the progress window. If omitted, the default is 500 milliseconds (.5 secs).

options

An optional dword containing optional specification of bitwise hexadecimal flags. If omitted, the default value is PW_SMALL_BOX_STYLE. See Remarks below.

Return Value

Returns an int as ERROR_NONE if the function succeeds or -1 if the function fails. Use the GetLastError function to retrieve error information.

Remarks

A script can only have one progress window open at any time. The script ending will automatically close an open progress window.

The style and operation of the progress windows is determined by the options parameter. The following are the acceptable bitwise values: 

  Value   Code   Comment  
  PW_BAR_DEFAULT   0x00000000   Default progress bar.  
  PW_BAR_XP_STYLE   0x00000020   Windows XP style. Otherwise use the theme.  
  PW_NO_CANCEL   0x00000001   No cancel/disable cancel button.  
  PW_NO_YIELD   0x00000002   Do not yield for messages.  
  PW_BAR_NO_PERCENT   0x00000004   No percentage bar.  
  PW_STANDARD_BOX_STYLE   0x00000000   Standard box (default).  
  PW_SMALL_BOX_STYLE   0x00000100   Small box style (no visible cancel).  
  PW_LARGE_BOX_STYLE   0x00000200   Large box style (i.e., file transfer).  
  PW_HIDE_CAPTION   0x00001000   Hide caption (shrinks caption).  
  PW_APPLICATION_LOG   0x00002000   Post to application log.  
  PW_INHIBIT_PROGRESS   0x01000000   Do not display progress updates.  

If the progress window is owned by another process when the ProgressOpen function is called, the GetLastError function will return ERROR_SOFT.

Related Functions

Platform Support

Go13, Go16, GoFiler Complete, GoFiler Corporate, GoFiler, GoFiler Lite, GoXBRL

Legato IDE, Legato Basic