About presenting lists – PB Docs 2018
About presenting lists You can choose a variety of ways to present lists in your application: ListBoxes and PictureListBoxes display available choices that can be used for invoking an action or viewing and displaying data. DropDownListBoxes and DropDownPictureListBoxes also display available choices to the user. However, you can make them editable to the user. DropDownListBoxes…
AddItemDate – PB Docs 2018
AddItemDate PowerScript function Description Adds the child item of JsonStringItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemDate ( ParentItemHandle, Value ) |
|
1 |
objectname.AddItemDate ( ParentItemHandle, Key, Value ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
Accelerator – PB Docs 2018
Accelerator property for PowerScript controls Applies to Controls that accept user input, including list boxes, MultiLineEdit, SingleLineEdit, ListView, EditMask, and TreeView Description Accelerator keys allow users to select an item (that is, change focus) with a keystroke rather than the mouse. An underlined character in the item’s name or label tells the user what key…
AddItemBoolean – PB Docs 2018
AddItemBoolean PowerScript function Description Adds the child item of JsonBooleanItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemBoolean ( ParentItemHandle, Value ) |
|
1 |
objectname.AddItemBoolean ( ParentItemHandle, Key, Value ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
Accessibility requirements for software and Web applications – PB Docs 2018
Accessibility requirements for software and Web applications Organizations that want to make their applications accessible to the disabled might have to comply with several sets of slightly different regulations and guidelines, depending on the countries in which their products will be sold or used. Section 508 Section 508, enacted in 1998, is an extension of…
About preferences and default settings – PB Docs 2018
About preferences and default settings Many PowerBuilder applications store user preferences and default settings across sessions. For example, many applications keep track of settings that control the appearance and behavior of the application, or store default parameters for connecting to the database. PowerBuilder applications can manage this kind of information in initialization files or in…
About MobiLink synchronization – PB Docs 2018
About MobiLink synchronization MobiLink is a session-based synchronization system that allows two-way synchronization between a main database, called the consolidated database, and many remote databases. This section introduces some MobiLink terms and concepts. Where to find additional information Detailed information about MobiLink synchronization is provided in the MobiLink Getting Started, the MobiLink – Client Administration,…
AddItemArray – PB Docs 2018
AddItemArray PowerScript function Description Adds the child item of JsonArrayItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemArray ( ParentItemHandle ) |
|
1 |
objectname.AddItemArray ( ParentItemHandle, Key ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem type Argument…
AddItemBlob – PB Docs 2018
AddItemBlob PowerScript function Description Adds the child item of JsonStringItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemBlob ( ParentItemHandle, Value ) |
|
1 |
objectname.AddItemBlob ( ParentItemHandle, Key, Value ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
About PBDOM – PB Docs 2018
About PBDOM PBDOM is the PowerBuilder implementation of the Document Object Model (DOM), a programming interface defining the means by which XML documents can be accessed and manipulated. Although PBDOM is not an implementation of the World Wide Web Consortium (W3C) DOM API, it is very similar. The PBDOM PowerBuilder API can be used for…