Calling functions and events in an object’s ancestor – PB Docs 125
Calling functions and events in an object’s ancestor Description In PowerBuilder, when an object is instantiated with a descendant object, even if its class is the ancestor and that descendant has a function or event script that overrides the ancestor’s, the descendant’s version is the one that is executed. If you specifically want to execute…
Syntax 1 For formatting data – PB Docs 125
Syntax 1 For formatting data Description Formats data, such as time or date values, according to a format mask. You can convert and format date, DateTime, numeric, and time data. You can also apply a display format to a string. Syntax
|
1 |
<span>String</span> ( <span>data</span>, { <span>format</span> } ) |
Argument Description data The data you want returned as a string with the specified…
SetTop – PB Docs 125
SetTop PowerScript function Description Scrolls a list box control so that the specified item is the first visible item. Controls ListBox and PictureListBox controls Syntax
|
1 |
<span>listboxname</span>.<span>SetTop</span> ( <span>index</span> ) |
Argument Description listboxname The name of the ListBox or PictureListBox that you want to scroll index The number of the item you want to become the first visible item…