About preferences and default settings – PB Docs 2021
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…
AddItemArray – PB Docs 2021
AddItemArray PowerScript function Description Adds a child item of JsonArrayItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemArray ( ParentItemHandle ) |
|
1 |
objectname.AddItemArray ( ParentItemHandle, Key ) |
|
1 |
objectname.AddItemArray ( ParentItemPath ) |
|
1 |
objectname.AddItemArray ( ParentItemPath, 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 or JsonObjectItem…
About presenting lists – PB Docs 2021
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…
AddPicture – PB Docs 2021
AddPicture PowerScript function Description Adds a bitmap, icon, or cursor to the main image list. Applies to PictureListBox, DropDownPictureListBox, and TreeView controls Syntax
|
1 |
controlname.AddPicture ( picturename ) |
Argument Description controlname The name of the control to which you want to add an icon, cursor, or bitmap to the main image list picturename The name of the icon, cursor,…
About MobiLink synchronization – PB Docs 2021
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,…
AccessToken – PB Docs 2021
AccessToken PowerScript function Description Sends a request to get the token information. Applies to OAuthClient object Syntax
|
1 |
objectname.AccessToken ( TokenRequest tokenRequest, TokenResponse tokenResponse ) |
Argument Description objectname A reference to the OAuthClient object. tokenRequest A reference to the TokenRequest object specifying the request information. tokenResponse A reference to the TokenResponse object into which the function returns the object. Return value Integer….
Adding subscriptions – PB Docs 2021
Adding subscriptions A synchronization subscription links a particular MobiLink user with a publication. You must have at least one publication and one user to create a subscription. A subscription can also carry other information needed for synchronization. For example, you can specify the address of the MobiLink server and other connection options. Values for a…
About PBDOM – PB Docs 2021
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…
AppDriverName – PB Docs 2021
AppDriverName database parameter Description Allows you to set your own client driver name for the Oracle database connection. Applies to ORA Oracle (for 11g and later) Syntax
|
1 |
AppDriverName =value |
Parameter Description value Specifies the name of the driver to use for an Oracle database connection. Default value None. Usage The maximum length of the name is…
PowerServer (Web API Server) – PB Docs 2021
PowerServer (Web API Server) The PowerServer Web API is an ASP.NET Core 3.1 app; it can be hosted and deployed like any other ASP.NET Core app. The following are the most popular hosting environments: Windows/Linux Docker Windows IIS Windows/Linux Kestrel (using IIS, Apache or Nginx as reverse proxy server) Document get from Powerbuilder help Thank…