Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

Powerbuilder Documentation 2022 – Page 14 – PowerBuilder Library

Powerbuilder Documentation 2022

IsGlobalVarArray – PB Docs 2022

IsGlobalVarArray Description Returns true if the global variable contains an array; otherwise it returns false. Syntax

Argument Description fid The field ID of the global variable Return value pbboolean. Examples These statements test whether the field identified by fid is a global variable array:

See also GetGlobalVarID GetGlobalVarType Get<type>GlobalVar IsGlobalVarNull IsGlobalVarObject SetGlobalVarToNull Set<type>GlobalVar…

NewBoundedObjectArray – PB Docs 2022

NewBoundedObjectArray Description Creates a bounded PowerBuilder object or structure array. Syntax

Argument Description cls A valid class handle of the type of PowerBuilder object or structure array to be created dimension A number greater than one that indicates the dimension of the array to be created bounds An array containing the upper and lower…

The PBNI SDK – PB Docs 2022

The PBNI SDK When you install PowerBuilder, the Software Development Kit (SDK) for PBNI is installed in the %AppeonInstallPath%PowerBuilder [version]SDKPBNI directory. The SDK tools, pbsig220 and pbx2pbd220, are also installed in the %AppeonInstallPath%PowerBuilder [version]IDE directory so that they are available in your path. The SDK contains the components shown in the following table. Component Description…

GetArrayInfo – PB Docs 2022

GetArrayInfo Description Obtains information about an array. Syntax

Argument Description array A valid array handle Return value PBArrayInfo*. Examples This IF-ELSE statement populates a PBArrayInfo structure if the array in the first value of a PBCallInfo structure is not null:

Usage If the array is an unbounded array, the bounds information in PBArrayInfo…

NewDate – PB Docs 2022

NewDate Description Creates a new pbdate data object. Syntax

Return value pbdate. Examples This example tests whether a date value exists, and, if it does not, it creates a new pbdate object and sets its value to the first day in January, 1900:

Usage The initial value is 1900-1-1. See also SetDate SplitDate…

IPB_Arguments interface – PB Docs 2022

IPB_Arguments interface The IPB_Arguments interface has two methods: GetCount obtains the number of arguments in a method call. GetAt obtains the value at a specific index of the pArgs member of the PBCallInfo structure. For each argument, GetAt returns a pointer to the IPB_Value interface. The following code fragment uses GetCount and GetAt in a…

ReleaseDateTimeString – PB Docs 2022

ReleaseDateTimeString Description Frees the memory acquired using GetDateTimeString. Syntax

Argument Description string The string to be released from memory Return value None. See also GetDateTimeString Document get from Powerbuilder help Thank you for watching.

pbsig220 – PB Docs 2022

pbsig220 Description The PowerBuilder function signature is the internal signature of a PowerBuilder function that is used to identify polymorphisms functions in a class. The pbsig220 tool obtains these function signatures from a PBL. Inherited functions You can also obtain a signature by selecting the function in the System Tree or Browser and selecting Properties…

GetGlobalVarType – PB Docs 2022

GetGlobalVarType Description Obtains the datatype of a global variable. Syntax

Argument Description fid The internal ID of the class instance variable Return value pbuint. A simple datatype defined in the list of pbvalue_type enumerated types. Examples This code tests getting and setting a global integer variable using the field ID fid:

See also…

SetMarshaler – PB Docs 2022

SetMarshaler Description Sets a marshaler that will be used to invoke remote methods and convert PowerBuilder data formats to the user’s communication protocol. Syntax

Argument Description obj An object of type pbproxyObject to be used as a proxy for a remote object that was created using NewProxyObject marshaler A class inherited from IPBX_Marshaler Return…