To display the Create SQL Anywhere Database dialog box – PB Docs 2021
To display the Create SQL Anywhere Database dialog box In the Database painter, double-click Create SA Database in the Utilities folder of the ODBC interface. Document get from Powerbuilder help Thank you for watching.
Embedding the PBVM in a C++ application – PB Docs 2021
Embedding the PBVM in a C++ application Many PowerBuilder users have developed sophisticated custom class user objects that handle intensive database operations or other functionality. Such objects can already be used in external applications. However, limitations on the use of some datatypes and of overloaded functions, as well as other coding restrictions, diminishes the value…
Select Procedure dialog box – PB Docs 2021
Select Procedure dialog box Description Select a procedure to paste into the current script. Options Procedures Displays a list of procedures in the current database. Select the procedure you want to declare in your application from the list and click OK. If the procedure requires parameters, the Parameters dialog box displays so that you can…
Exchanging Data with PowerBuilder – PB Docs 2021
Exchanging Data with PowerBuilder Contents About exchanging data with PowerBuilder Passing values between extensions and the PBVM Using the IPB_Session interface Saving data from IPB_Value to a local variable Using variables throughout a session Handling enumerated types About this chapter This chapter describes how PBNI extensions exchange data with PowerBuilder. Document get from Powerbuilder help…
Match Pattern dialog box – PB Docs 2021
Match Pattern dialog box Description Specify a match pattern for a character column. Options Pattern Specify a text pattern for the rule or select a pattern from the Available Patterns box. Test Value Enter a value to test the specified text pattern. Test Click to test the value in the Test Value box. Result Displays…
Properties of the DataWindow Control and DataStore – PB Docs 2021
Properties of the DataWindow Control and DataStore Contents Properties for PowerBuilder DataWindow About this chapter The chapter lists the properties of the DataWindow control and DataStore. These properties can be set in code to control the appearance and behavior of the container for the DataWindow object. Document get from Powerbuilder help Thank you for watching.
To display the Quick Select dialog box – PB Docs 2021
To display the Quick Select dialog box Start the DataWindow or Data Pipeline painter, click New, and select Quick Select as the data source. Document get from Powerbuilder help Thank you for watching.
System Object Properties, Events, and Functions – PB Docs 2021
System Object Properties, Events, and Functions Contents ADOResultSet object Animation control Application object ArrayBounds object CheckBox control ClassDefinition object CoderObject object CommandButton control CompressorObject object Connection object (obsolete) ContextInformation object ContextKeyword object CORBACurrent object (obsolete) CORBAObject object (obsolete) CrypterObject object DotNetAssembly object DotNetObject object DataStore object DataWindow control DataWindowChild object DatePicker control DropDownListBox control DropDownPictureListBox…
PBORCA_LibraryCommentModify – PB Docs 2021
PBORCA_LibraryCommentModify Description Modifies the comment for a PowerBuilder library. Syntax
|
1 2 3 |
INT PBORCA_LibraryCommentModify ( HPBORCA hORCASession, LPTSTR lpszLibName, LPTSTR lpszLibComments ); |
Argument Description hORCASession Handle to previously established ORCA session lpszLibName Pointer to a string whose value is the name of the library whose comments you want to change lpszLibComments Pointer to a string whose value is the new library comments Return value INT. Typical…
Passing objects – PB Docs 2021
Passing objects When you pass an object to a function or event, the object must exist when you refer to its properties and functions. If you call the function but the object has been destroyed, you get the execution error for a null object reference. This is true whether you pass by reference, by value,…