Step 6: Build a PBX – PB Docs 2019
Step 6: Build a PBX Using your C++ development tool or the command line, build a PBX from your C++ classes. When you compile and link the C++ code, verify the following: The include directory for the PBNI SDK, typically PowerBuilder 19.0SDKPBNIinclude, must be in your include path. If you use any helper classes, make…
AddSmallPicture – PB Docs 2019
AddSmallPicture PowerScript function Description Adds a bitmap, icon, or cursor to the small image list. Applies to ListView controls Syntax
|
1 |
listviewname.AddSmallPicture ( picturename ) |
Argument Description listviewname The name of the ListView control to which you are adding a small image picturename The name of the bitmap, icon, or cursor you are adding to the ListView control small…
Perspective – PB Docs 2019
Perspective property (DataWindow object) Description The distance from the front of the window at which the graph appears. Applies to Graph controls Syntax PowerBuilder dot notation:
|
1 |
dw_control.Object.graphname.Perspective |
Describe and Modify argument:
|
1 |
"graphname.Perspective { = ' integer ' }" |
Parameter Description graphname The name of the graph control in the DataWindow object for which you want to get or set the perspective….
ADO.NET database interface – PB Docs 2019
ADO.NET database interface The PowerBuilder ADO.NET interface supports the OLE DB, Microsoft SQL Server .NET, Oracle ODP.NET, and SAP ASE data providers. If you use ADO.NET, you must deploy pbado.dll, pbrth.dll, sybase.PowerBuilder.Db.dll, sybase.PowerBuilder.DbExt.dll, and, for OLE DB, the OLE DB data provider. The files pbado.dll and pbrth.dll are standard DLL files, and you can deploy…
Basic software components for Microsoft SQL Server – PB Docs 2019
Basic software components for Microsoft SQL Server You must install the software components in the following figure to access a database with the MSOLEDBSQL SQL Server or SNC SQL Native Client interface. Figure: Components of a Microsoft SQL Server connection Document get from Powerbuilder help Thank you for watching.
AnimationTime – PB Docs 2019
AnimationTime property for PowerScript controls Applies to Window controls Description Specifies the time in milliseconds that an opening or closing animation effect associated with a window takes to complete. Usage Use the AnimationTime property to control the number of milliseconds an opening or closing animation takes to execute. The value must be a positive integer…
OLEClass – PB Docs 2019
OLEClass property (DataWindow object) Description The name of the OLE class for the TableBlob control. Applies to TableBlob controls Syntax PowerBuilder dot notation:
|
1 |
dw_control.Object.tblobname.OLEClass |
Describe and Modify argument:
|
1 |
"tblobname.OLEClass { = 'oleclassname ' }" |
Parameter Description tblobname The TableBlob column for which you want to get or set the class of server application. oleclassname (exp) A string specifying a class…
ClearException – PB Docs 2019
ClearException Description Clears the current PowerBuilder exception object. Syntax
|
1 |
ClearException () |
Return value None. Usage HasExceptionThrown returns false after a call to ClearException. If no exception has been thrown, this call has no effect. See also GetException HasExceptionThrown ThrowException Document get from Powerbuilder help Thank you for watching.
Microsoft SQL Server Closing the cursor – PB Docs 2019
Microsoft SQL Server Closing the cursor The CLOSE statement terminates processing for the specified cursor. CLOSE releases resources associated with the cursor, and subsequent references to that cursor are allowed only if another OPEN is executed. Although you can have multiple cursors open at the same time, you should close the cursors as soon as…
DWBuffer – PB Docs 2019
DWBuffer constant (DataWindows) Description Values for specifying the DataWindow buffer containing the rows you want to access. Used in many DataWindow methods that access data. Values PowerBuilder enumerated value Numeric value Meaning Primary! 0 The data in the primary buffer, meaning data that has not been deleted or filtered out. (Default value when argument is…