C0077 Compiler Error – PB Docs 2021
C0077 Compiler Error Message text Integer constant out of range, max = 18446744073709551615. Explanation The maximum range for a longlong variable, which is the longest integer type supported in PowerScript, is from -9223372036854775808 to 9223372036854775807. These statements all generate C0077, because they all exceed the maximum value of 18446744073709551615 (9223372036854775808 + 9223372036854775807):
1 2 3 4 |
constant longlong lll_a = 18446744073709551616 longlong lll_b = 18446744073709551616/2 constant long ll_a = 18446744073709551616 int li_a = 18446744073709551616 |
These statements…
PackageProcs – PB Docs 2022
PackageProcs database parameter Description Specifies that the stored procedures and functions encapsulated in an Oracle database package should be appended to the lists of Oracle standalone stored procedures and functions displayed in the DataWindow object and Database painters. When to specify PackageProcs You must specify the PackageProcs parameter before connecting to the database. Applies to…
Specifying the categories – PB Docs 2022
Specifying the categories Specify the column or expression whose values determine the categories. In the Graph Data page in the Graph dialog box and on the Data page in the Properties view, you can select a column name from a drop-down list. There is an entry along the Category axis for each different value of…
Deploying applications, components, and supporting files – PB Docs 115
Deploying applications, components, and supporting files Regardless of the type of application you are deploying, you must include any supporting files such as dynamic libraries, resources like BMP and ICO files, online Help files, and initialization files. Each application type requires a different set of supporting files. The PowerBuilder runtime files, such as pbvm115.dll and…
Web Service Selection dialog box – PB Docs 125
Web Service Selection dialog box Description Allows you to select the Web services for which you want to generate proxy objects. Options WSDL location Select the service and port or binding that you want to use. Prefix Specify an optional prefix that will be added at the front of the proxy name. The proxy name…
Deleting controls in a DataWindow object – PB Docs 126
Deleting controls in a DataWindow object To delete controls in a DataWindow object: Select the controls you want to delete. Select Edit>Delete from the menu bar or press the Delete key. Document get from Powerbuilder help Thank you for watching.
Syntax 2 Convert a string or a byte array to a blob – PB Docs 150
Syntax 2 Convert a string or a byte array to a blob Description Converts a string or an array of bytes to a blob datatype. Syntax
1 |
<span>Blob</span> ( <span>array[ ]</span> ) |
Argument Description stringorbytearray An Any variable that holds a string or an array of bytes you want to convert to a blob datatype Return Values Blob. Returns the converted…
PowerBuilder techniques – PB Docs 150
PowerBuilder techniques PowerBuilder provides full support for inheritance, encapsulation, and polymorphism in both visual and nonvisual objects. Creating reusable objects In most cases, the person developing reusable objects is not the same person using the objects in applications. This discussion describes defining and creating reusable objects. It does not address usage. Implementing inheritance PowerBuilder makes…
C0331 Compiler Error – PB Docs 2017
C0331 Compiler Error Message text Static member name cannot be accessed with a function or property call. Explanation Error C0331 is generated if you call a static member in a function or property. For example, each of the following calls generates error C0331:
1 |
s = emp.GetAssest().StaGetName() |
1 |
s = dept.EmpField.StaName; |
Document get from Powerbuilder help Thank you for watching.
OAuthClient object – PB Docs 2018
OAuthClient object The OAuthClient object provides interfaces for obtaining the access token and protected resources. Properties OAuthClient property Datatype Description ClassDefinition PowerObject An object of type PowerObject containing information about the class definition of the object or control. Events OAuthClient event Occurs Constructor Immediately before the Open event occurs in the window. Destructor Immediately after…