Building an application – PB Docs 110
Building an application This section describes the basic steps you follow when building a traditional client/server application. After completing step 1, you can define the objects used in your application in any order as you need them. To build a traditional client/server application: Create the application (using a New wizard) and specify the library list…
MLPass – PB Docs 125
MLPass property for PowerScript controls Controls MLSynchronization, MLSync, and SyncParm objects Description Specifies the MobiLink password passed to the synchronization server. Usage At design time, you can enter a value for MLPass on the General tab of the Properties view for an MLSync object. At runtime, application users can enter a value for MLPass in…
Associating data with a graph – PB Docs 126
Associating data with a graph When using a graph in a DataWindow object, you associate axes of the graph with columns in the DataWindow object. The only way to get data into a graph in a DataWindow object is through columns in the DataWindow object. You cannot add, modify, or delete data in the graph…
SetTextStyle – PB Docs 150
SetTextStyle PowerScript function Description Specifies the text formatting for selected text in a RichTextEdit control. You can make the text bold, underlined, italic, and struck out. You can also make it either a subscript or superscript. Controls RichTextEdit controls Syntax
|
1 |
<span>rtename</span>.<span>SetTextStyle</span> ( <span>bold</span>, <span>underline</span>, {<span>subscript</span>}, {<span>superscript</span>}, <span>italic</span>, <span><br> strikeout</span> ) |
Argument Description rtename The name of the RichTextEdit control in which you want to…
Oracle SELECT – PB Docs 150
Oracle SELECT The SELECT statement contains input variables and output variables. Input variables are passed to the database as part of the execution and the substitution as described above for DELETE, INSERT, AND UPDATE. Output variables are used to return values based on the result of the SELECT statement. Example 1 Assume you enter the…
Saving a pipeline – PB Docs 110
Saving a pipeline When you have generated a pipeline definition in the Data Pipeline painter workspace, you should save the pipeline. You can then reuse it later. To save a pipeline: Click the Save button, or select File>Save from the menu bar. For a new pipeline When you save a pipeline for the first time,…
InputFieldBackColor – PB Docs 125
InputFieldBackColor property for PowerScript controls Controls RichTextEdit controls Description The InputFieldBackColor property sets the color for the background of input fields in the RichTextEdit control. This item can also be selected by the user at runtime from the Properties item of the pop-up menu. Usage In a painter To set the background color of input…
About validation rules – PB Docs 126
About validation rules When users enter data in a DataWindow object, you want to be sure the data is valid before using it to update the database. Validation rules provide one way to do this. You usually define validation rules in the Database painter. To use a validation rule, you associate it with a column…
Support for .NET language features – PB Docs 150
Support for .NET language features You can write conditional code for the .NET environment, taking advantage of features that are not available directly in the PowerBuilder Classic application environment. Support for sbyte and ulonglong � sbyte is the signed format of the byte datatype and ulonglong is the unsigned format of the longlong datatype. Bitwise…
Provider – PB Docs 150
Provider database parameter Description Identifies the data provider you want to use to connect to your data source. When to specify Provider You must specify the Provider parameter before connecting to the database. Controls ADO.NET OLE DB SNC SQL Native Client for Microsoft SQL Server Syntax
|
1 |
Provider='<span>provider_name</span>' |
Default None Usage Select a data provider from…