ArrayBounds object – PB Docs 2021
ArrayBounds object A structure that specifies the upper and lower bounds of a single dimension of an array. It is used in the VariableCardinalityDefinition object. ArrayBounds has no events. Properties ArrayBounds property Datatype Description ClassDefinition PowerObject Contains information about the class definition of the object or control. LowerBound Long The lower bound of the array…
AddStatePicture – PB Docs 2021
AddStatePicture PowerScript function Description Adds a bitmap, icon, or cursor to the state image list. Applies to ListView and TreeView controls Syntax
|
1 |
controlname.AddStatePicture ( picturename ) |
Argument Description controlname The name of the ListView or TreeView control to which you are adding a bitmap, cursor, or icon picturename The name of the bitmap, icon, or cursor you are…
Architecture – PB Docs 2021
Architecture The installable cloud apps must be deployed against PowerServer 2021. PowerServer 2021 is a brand new PowerServer which is totally different from the traditional PowerServer. For more information, refer to this whitepaper: Deploying PowerBuilder Apps to the Cloud. The following table introduces PowerServer 2021. – Web Server Web API Server Supported Database Types PowerServer…
AddToLibraryList – PB Docs 2021
AddToLibraryList PowerScript function Description Adds new files to the library search path of an application or component at runtime. Syntax
|
1 |
AddToLibraryList ( filelist ) |
Argument Description filelist A comma-separated list of file names. Specify the full file name with its extension. If you do not specify a path, PowerBuilder uses the system’s search path to find the file….
ArrangeSheets – PB Docs 2021
ArrangeSheets PowerScript function Description Arranges the windows contained in an MDI frame. (Windows that are contained in an MDI frame are called sheets.) You can arrange the open sheets and the icons of minimized sheets or just the icons. Applies to MDI frame windows Syntax
|
1 |
mdiframe.ArrangeSheets ( arrangetype ) |
Argument Description mdiframe The name of an MDI frame…
Applying a theme – PB Docs 2021
Applying a theme You can apply a theme in the Application painter or by calling the ApplyTheme function. To select a theme in the painter: In the Application painter, select the General tab page. On the General tab page, click the Additional Properties button to display the Application properties dialog box. In the Application properties…
ApplyTheme – PB Docs 2021
ApplyTheme PowerScript function Description Applies a theme to the current application UI. This method should be called when all windows are closed, in order for windows and controls to take effect. Syntax
|
1 |
ApplyTheme ( String theme ) |
Argument Description theme A string whose value is the theme name (or theme path and name) you want to apply to the…
AddSmallPicture – PB Docs 2021
AddSmallPicture PowerScript function Description Adds a bitmap, icon, or cursor to the small image list. Applies to ListView controls Syntax
|
1 |
listviewname.AddSmallPicture ( picturename ) |
Argument Description listviewname The name of the ListView control to which you are adding a small image picturename The name of the bitmap, icon, or cursor you are adding to the ListView control small…
AppName – PB Docs 2021
AppName database parameter Description If the DBMS supports it, specifies the application name you want to use when connecting to the database in PowerBuilder. When to specify AppName You must specify the AppName parameter before connecting to the database. Applies to ASE, SYC SAP Adaptive Server Enterprise DIR SAP DirectConnect SNC SQL Native Client for…
About TreeView controls – PB Docs 2021
About TreeView controls TreeView controls provide a way to represent hierarchical relationships within a list. The TreeView provides a standard interface for expanding and collapsing branches of a hierarchy: When to use a TreeView You use TreeViews in windows and custom visual user objects. Choose a TreeView instead of a ListBox or ListView when your…