Rectangle control – PB Docs 150
Rectangle control A rectangle is a filled or outlined rectangular form within a window and is typically used for design purposes. For example, you can put a CommandButton or a picture in a rectangle, or you can use a rectangle behind and slightly offset from another control to create a shadow effect. When you use…
Chapter 12 Building and Deploying Web Targets – PB Docs 100
Chapter 12 Building and Deploying Web Targets About this chapter This chapter describes the production process for Web targets, and explains how to build and deploy Web targets from your workspace. Contents Topic About building and deploying Web targets Building Web targets The deployment process Setting up a deployment configuration Editing a Web site deployment…
Preparing to use the SQL Server database – PB Docs 125
Preparing to use the SQL Server database Before you define the database interface and connect to a Microsoft SQL Server database in PowerBuilder, follow these steps to prepare the database for use: Install and configure the required database server, network, and client software. Install the SQL Native Client database interface. Verify that you can connect…
Declaring arrays – PB Docs 125
Declaring arrays Description An array is an indexed collection of elements of a single datatype. In PowerBuilder, an array can have one or more dimensions. One-dimensional arrays can have a fixed or variable size; multidimensional arrays always have a fixed size. Each dimension of an array can have 2,147,483,647 bytes of elements. Any simple variable…
dbName – PB Docs 126
dbName DataWindow object property Description The name of the database column. The DataWindow server uses this value to construct the update syntax. Controls Column controls Syntax PowerBuilder dot notation:
|
1 |
<span>dw_control</span>.Object.<span>columnname.</span>dbName |
Describe and Modify argument:
|
1 |
"<span>columnname.</span>dbName { = '<span> dbcolumnname</span> ' }" |
Parameter Description columnname The name of the column for which you want the name of the corresponding database column dbcolumnname…
ResultSets object – PB Docs 150
ResultSets object The ResultSets object provides the ability to handle multiple result sets returned from EAServer. Properties ResultSets property Datatype Description ClassDefinition PowerObject An object of type PowerObject containing information about the class definition of the object or control ResultSetList ResultSet object An array of ResultSet objects Events ResultSets event Occurs Constructor When the object…
Chapter 1 Working with Web Targets – PB Docs 100
Chapter 1 Working with Web Targets About this chapter This chapter describes Web targets and how you work with them in PowerBuilder. The same development environment is used for creating Java Server Pages (JSP) and HTML Web pages. Contents Topic About Web targets Using the Web Target development environment Working in an integrated Web delivery…
Setting database preferences in the development environment – PB Docs 125
Setting database preferences in the development environment There are two ways to set database preferences in the PowerBuilder development environment on all supported development platforms, depending on the preference you want to set: Set AutoCommit and Lock (Isolation Level) in the Database Profile Setup dialog box for your connection ADO.NET For ADO.NET, Isolation is a…
PipeEnd – PB Docs 125
PipeEnd event Description Occurs when pipeline processing is completed. Event ID Event ID Objects pbm_pipeend Pipeline Parameters None Return Values Long. Return code choices (specify in a RETURN statement): 0 Continue processing Usage You can use the PipeEnd event to check the status of pipeline processing. The Start and Repair functions initiate pipeline processing. For a…
Expression – PB Docs 126
Expression DataWindow object property Description The expression for a computed field control in the DataWindow. The expression is made up of calculations and DataWindow expression functions. The DataWindow evaluates the expression to get the value it will display in the computed field. Controls Computed field controls Syntax PowerBuilder dot notation:
|
1 |
<span>dw_control</span>.Object.<span>computename</span>.Expression |
Describe and Modify argument:…