Adding controls to a DataWindow object

This section describes adding controls to enhance your DataWindow object.

Adding columns to a DataWindow object

You can add columns that are included in the data source to a DataWindow object. When you first create a DataWindow object, each of the columns in the data source is automatically placed in the DataWindow object. Typically, you would add a column to restore one that you had deleted from the DataWindow object, or to display the column more than once in the DataWindow object.

Adding columns not previously retrieved to the data source

To specify that you want to retrieve a column not previously retrieved (that is, add a column to the data source), you must modify the data source.

See Modifying the data source of a DataWindow object.

To add a column from the data source to a DataWindow object

  1. Select Insert>Control>Column from the menu bar.

  2. Click where you want to place the column.

    The Select Column dialog box displays, listing all columns included in the data source of the DataWindow object.

  3. Select the column and click OK.

Insert columns instead of copying them

If you want to add a column from the DataWindow definition to a DataWindow, always use Insert>Control>Column. You might see unexpected results if you copy a column from one DataWindow object to another if they both reference the same column but the column order is different. This is because copying a column copies a reference to the column's id in the DataWindow definition.

Suppose d_first and d_second both have first_name and last_name columns, but first_name is column 1 in d_first and column 2 in d_second. If you delete the first_name column in d_second and paste column 1 from d_first in its place, both columns in d_second display the last_name column in the Preview view, because both columns now have a column id of 1.

Adding text to a DataWindow object

When PowerBuilder generates a basic DataWindow object from a presentation style and data source, it places columns and their headings in the DataWindow painter. You can add text anywhere you want to make the DataWindow object easier to understand.

To add text to a DataWindow object

  1. Select Insert>Control>Text from the menu bar.

  2. Click where you want the text.

    PowerBuilder places the text control in the Design view and displays the word text.

  3. Type the text you want.

  4. (Optional) Change the font, size, style, and alignment for the text using the StyleBar.

Displaying an ampersand character

If you want to display an ampersand character, type a double ampersand in the Text field. A single ampersand causes the next character to display with an underscore because it is used to indicate accelerator keys.

About the default font and style

When you place text in a DataWindow object, PowerBuilder uses the font and style (such as boldface) defined for the application's text in the Application painter. You can override the text properties for any text in a DataWindow object.

For more about changing the application's default text font and style, see Working with Targets.

Adding drawing controls to a DataWindow object

You can add the following drawing controls to a DataWindow object to enhance its appearance:

  • Rectangle

  • RoundRectangle

  • Line

  • Oval

To place a drawing control in a DataWindow object

  1. Select the drawing control from the Insert>Control menu.

  2. Click where you want the control to display.

  3. Resize or move the drawing control as needed.

  4. Use the drawing control's Properties view to change its properties as needed.

    For example, you might want to specify a fill color for a rectangle or thickness for a line.

Adding a group box to a DataWindow object

To visually enhance the layout of a DataWindow object, you can add a group box. A group box is a static frame used to group and label a set of controls in a DataWindow object.The following example shows two group boxes in a report (nonupdatable DataWindow object). The Address group box groups address information and the Phone/Fax group box groups telephone numbers.


To add a group box to a DataWindow object

  1. Select Insert>Control>GroupBox from the menu bar and click in the Design view.

  2. Click where you want the control to display.

  3. With the group box selected, type the text to display in the frame in.

  4. Move and resize the group box as appropriate.

Adding pictures to a DataWindow object

You can place pictures, such as your company logo, in a DataWindow object to enhance its appearance. If you place a picture in the header, summary, or footer band of the DataWindow object, the picture displays each time the content of that band displays. If you place the picture in the detail band of the DataWindow object, it displays in each row.

To place a picture in a DataWindow object

  1. Select Insert>Control>Picture from the menu bar.

  2. Click where you want the picture to display.

    The Select Picture dialog box displays.

  3. Use the Browse button to find the file or enter a file name in the File Name box. Then click Open.

    The picture must be a bitmap (BMP), runlength-encoded (RLE), Windows metafile (WMF), Graphics Interchange Format (GIF), or Joint Photographic Experts Group (JPEG) file.

  4. Display the pop-up menu and select Original Size to display the image in its original size.

    You can use the mouse to change the size of the image in the DataWindow painter.

  5. Select the Invert Image check box on the Appearance page in the Properties view to display the picture with its colors inverted.

Tips for using pictures

To display a different picture for each row of data, retrieve a column containing picture file names from the database. For more information, see Specifying additional properties for character columns.

To compute a picture name at runtime, use the Bitmap function in the expression defining a computed field. If you change the image in the Picture control in a DataWindow object, you need to reset the original size property. The property automatically reverts to the default setting when you change the image.

To use a picture to indicate that a row has focus at runtime, use the SetRowFocusIndicator function.

Adding computed fields to a DataWindow object

You can use computed fields in any band of the DataWindow object. Typical uses with examples include:

  • Calculations based on column data that change for each retrieved row

    If you retrieve yearly salary, you can define a computed field in the detail band that displays monthly salary: Salary / 12.

  • Summary statistics of the data

    In a grouped DataWindow object, you can use a computed field to calculate the totals of a column, such as salary, for each group: sum (salary for group 1).

  • Concatenated fields

    If you retrieve first name and last name, you can define a computed field that concatenates the values so they appear with only one space between them: Fname + " " + Lname.

  • System information

    You can place the current date and time in a DataWindow object's header using the built-in functions Today() and Now() in computed fields.

Computed columns versus computed fields

When creating a DataWindow object, you can define computed columns and computed fields as follows:

  • In the SQL Select painter, you can define computed columns when you are defining the SELECT statement that will be used to retrieve data into the DataWindow object.

  • In the DataWindow painter, you can define computed fields after you have defined the SELECT statement (or other data source).

The difference between the two ways

When you define the computed column in the SQL Select painter, the value is calculated by the DBMS when the data is retrieved. The computed column's value does not change until data has been updated and retrieved again.

When you define the computed field in the DataWindow painter, the value of the column is calculated in the DataWindow object after the data has been retrieved. The value changes dynamically as the data in the DataWindow object changes.

Example

Consider a DataWindow object with four columns: Part number, Quantity, Price, and Cost. Cost is computed as Quantity * Price.

Part #

Quantity

Price

Cost

101

100

1.25

125.00


If Cost is defined as a computed column in the SQL Select painter, the SELECT statement is as follows:

SELECT part.part_num,   
part.part_qty,   
part.part_price,   
part.part_qty * part.part_price
FROM part;

If the user changes the price of a part in the DataWindow object in this scenario, the cost does not change in the DataWindow object until the database is updated and the data is retrieved again. The user sees a display with the changed price but the unchanged, incorrect cost.

Part #

Quantity

Price

Cost

101

100

2.50

125.00


If Cost is defined as a computed field in the DataWindow object, the SELECT statement is as follows, with no computed column:

SELECT part.part_num,   
part.part_qty,   
part.part_price
FROM part;

The computed field is defined in the DataWindow object as Quantity * Price.

In this scenario, if the user changes the price of a part in the DataWindow object, the cost changes immediately.

Part #

Quantity

Price

Cost

101

100

2.50

250.00


Recommendation

If you want your DBMS to do the calculations on the server before bringing data down and you do not need the computed values to be updated dynamically, define the computed column as part of the SELECT statement.

If you need computed values to change dynamically, define computed fields in the DataWindow painter Design view, as described next.

Defining a computed field in the DataWindow painter Design view

To define a computed field in the DataWindow painter Design view

  1. Select Insert>Control>Computed Field from the menu bar.

  2. Click where you want to place the computed field.

    If the calculation is to be based on column data that changes for each row, make sure you place the computed field in the detail band.

    The Modify Expression dialog box displays, listing:

    • DataWindow expression functions you can use in the computed field

    • The columns in the DataWindow object

    • Operators and parentheses

  3. Enter the expression that defines the computed field as described in Entering the expression.

  4. (Optional) Click Verify to test the expression.

    PowerBuilder analyzes the expression.

  5. Click OK.

Entering the expression

You can enter any valid DataWindow expression when defining a computed field. You can paste operators, columns, and DataWindow expression functions into the expression from information in the Modify Expression dialog box. Use the + operator to concatenate strings.

You can use any built-in or user-defined global function in an expression. You cannot use object-level functions.

DataWindow expressions

You are entering a DataWindow expression, not a SQL expression processed by the DBMS, so the expression follows the rules for DataWindow expressions. For complete information about DataWindow expressions, see DataWindow Expression Functions in DataWindow Reference.

Referring to next and previous rows

You can refer to other rows in a computed field. This is particularly useful in N-Up DataWindow objects when you want to refer to another row in the detail band. Use this syntax:

ColumnName[x]

where x is an integer. 0 refers to the current row (or first row in the detail band), 1 refers to the next row, –1 refers to the previous row, and so on.

Examples

The following table shows some examples of computed fields.

To display

Enter this expression

In this band

Current date at top of each page

Today()

Header

Current time at top of each page

Now()

Header

Current page at bottom of each page

Page()

Footer

Total page count at bottom of each page

PageCount()

Footer

Concatenation of Fname and Lname columns for each row

Fname + " " + Lname

Detail

Monthly salary if Salary column contains annual salary

Salary / 12

Detail

Four asterisks if the value of the Salary column is greater than $50,000

IF(Salary> 50000, "****", "")

Detail

Average salary of all retrieved rows

Avg(Salary)

Summary

Count of retrieved rows, assuming each row contains a value for EmpID

Count(EmpID)

Summary


For complete information about the functions you can use in computed fields in the DataWindow painter, see DataWindow Reference.

Menu options and buttons for common functions

PowerBuilder provides a quick way to create computed fields that summarize values in the detail band, display the current date, or show the current page number.

To summarize values

  1. Select one or more columns in the DataWindow object's detail band.

  2. Select one of the options at the bottom of the cascading menu: Average, Count, or Sum.

    The same options are available at the bottom of the Controls drop-down toolbar on the PainterBar.

    PowerBuilder places a computed field in the summary band or in the group trailer band if the DataWindow object is grouped. The band is resized automatically to hold the computed field. If there is already a computed field that matches the one being generated, it is skipped.

To insert a computed field for the current date or page number

  1. Select Insert>Control from the menu bar.

  2. Select Today() or Page n of n from the options at the bottom of the cascading menu.

    The same options are available at the bottom of the Controls drop-down toolbar on the PainterBar.

  3. Click anywhere in the DataWindow object.

    If you selected Today, PowerBuilder inserts a computed field containing this expression: Today(). For Page n of n, the computed field contains this expression: 'Page ' + page() + ' of ' + pageCount().

Adding custom buttons that place computed fields

You can add buttons to the PainterBar in the DataWindow painter that place computed fields using any of the aggregate functions, such as Max, Min, and Median.

To customize the PainterBar with custom buttons for placing computed fields

  1. Place the mouse pointer over the PainterBar and select Customize from the pop-up menu.

    The Customize dialog box displays.

  2. Click Custom in the Select palette group to display the set of custom buttons.

  3. Drag a custom button into the Current toolbar group and release it.

    The Toolbar Item Command dialog box displays.

  4. Click the Function button.

    The Function For Toolbar dialog box displays.

  5. Select a function and click OK.

    You return to the Toolbar Item Command dialog box.

  6. Specify text and microhelp that displays for the button, and click OK.

    PowerBuilder places the new button in the PainterBar. You can click it to add a computed field to your DataWindow object the same way you use the built-in Sum button.

Adding buttons to a DataWindow object

Buttons make it easy to provide command button actions in a DataWindow object. No coding is required. The use of Button controls in the DataWindow object, instead of CommandButton controls in a window, ensures that actions appropriate to the DataWindow object are included in the object itself.

The Button control is a command or picture button that can be placed in a DataWindow object. When clicked at runtime, the button activates either a built-in or user-supplied action.

For example, you can place a button in a report and specify that clicking it opens the Filter dialog box, where users can specify a filter to be applied to the currently retrieved data.

To add a button to a DataWindow object

  1. Select Insert>Control>Button from the menu bar.

  2. Click where you want the button to display.

    You may find it useful to put a Delete button or an Insert button in the detail band. Clicking a Delete button in the detail band will delete the row next to the button clicked. Clicking an Insert button in the detail band will insert a row following the current row.

    Be careful when putting buttons in the detail band

    Buttons in the detail band repeat for every row of data, which is not always desirable. Buttons in the detail band are not visible during retrieval, so a Cancel button in the detail band would be unavailable when needed.

    With the button still selected, type the text to display on the button in the PainterBar or on the General page of the Properties view.

  3. Select the action you want to assign to the button from the Action drop-down list on the General page of the Properties view.

    For information about actions, see Actions assignable to buttons in DataWindow objects.

    If you want to add a picture to the button, select the Action Default Picture check box or enter the name of the Picture file to display on the button.

    If you want to suppress event processing when the button is clicked at runtime, select the Suppress Event check box.

    When this option has been selected for the button and the button is clicked at runtime, only the action assigned to the button and the Clicked event are executed. The ButtonClicking and the ButtonClicked events are not triggered.

What happens if Suppress Event is off

If Suppress Event is off and the button is clicked, the Clicked and ButtonClicking events are fired. Code in the ButtonClicking event (if any) is executed. Note that the Clicked event is executed before the ButtonClicking event.

If the return code from the ButtonClicking event is 0, the action assigned to the button is executed and then the ButtonClicked event is executed.

If the return code from the ButtonClicking event is 1, neither the action assigned to the button nor the ButtonClicked event are executed.

Do not use a message box in the Clicked event

If you call the MessageBox function in the Clicked event, the action assigned to the button is executed, but the ButtonClicking and ButtonClicked events are not executed.

Example

For an example of a DataWindow object that uses buttons, see the d_button_report object in the Code Examples application.

This DataWindow object has several buttons that have default actions, and two that have user-defined actions. In the Properties view in the DataWindow painter, these buttons are named cb_help and cb_exit. Suppress Event is off for all buttons.

In the Window painter, the Clicked and ButtonClicking events for the DataWindow control that contains d_button_report are not scripted. This is the ButtonClicked event script:

string   ls_Object
string   ls_win

ls_Object = String(dwo.name)

If ls_Object = "cb_exit" Then
   Close(Parent)
ElseIf ls_Object = "cb_help" Then
   ls_win = parent.ClassName()
   f_open_help(ls_win)
End If

This script is triggered when any button in the DataWindow object is clicked.

Controlling the display of buttons in print preview and in printed output

You can choose whether to display buttons in print preview or in printed output. You control this in the Properties view for the DataWindow object (not the Properties view for the button).

To control the display of buttons in a DataWindow object in print preview and on printed output

  1. Display the DataWindow object's Properties view with the Print Specification page on top.

  2. Select the Display Buttons – Print check box.

    The buttons are included in the printed output when the DataWindow object is printed.

  3. Select the Display Buttons – Print Preview check box.

    The buttons display on the screen when viewing the DataWindow object in print preview.

Actions assignable to buttons in DataWindow objects

The following table shows the actions you can assign to a button in a DataWindow object. Each action is associated with a numeric value (the Action DataWindow object property) and a return code (the actionreturncode event argument).

The following code in the ButtonClicked event displays the value returned by the action:

MessageBox("Action return code", actionreturncode)

Action

Effect

Value

Action return code

User Defined (default)

Allows the developer to program the ButtonClicked event with no intervening action occurring.

0

The return code from the user's coded event script.

Retrieve (Yield)

Retrieves rows from the database. Before retrieval occurs, the option to yield is turned on; this will allow the Cancel action to take effect during a long retrieve.

1

Number of rows retrieved.

-1 if retrieve fails.

Retrieve

Retrieves rows from the database. The option to yield is not automatically turned on.

2

Number of rows retrieved.

-1 if retrieve fails.

Cancel

Cancels a retrieval that has been started with the option to yield.

3

0

Page Next

Scrolls to the next page.

4

The row displayed at the top of the DataWindow control when the scrolling is complete or attempts to go past the first row.

-1 if an error occurs.

Page Prior

Scrolls to the prior page.

5

The row displayed at the top of the DataWindow control when the scrolling is complete or attempts to go past the first row.

-1 if an error occurs.

Page First

Scrolls to the first page.

6

1 if successful.

-1 if an error occurs.

Page Last

Scrolls to the last page.

7

The row displayed at the top of the DataWindow control when the scrolling is complete or attempts to go past the first row.

-1 if an error occurs.

Sort

Displays Sort dialog box and sorts as specified.

8

1 if successful.

-1 if an error occurs.

Filter

Displays Filter dialog box and filters as specified.

9

Number of rows filtered.

Number < 0 if an error occurs.

Delete Row

If button is in detail band, deletes row associated with button; otherwise, deletes the current row.

10

1 if successful.

-1 if an error occurs.

Append Row

Inserts row at the end.

11

Row number of newly inserted row.

Insert Row

If button is in detail band, inserts row using row number associated with the button; otherwise, inserts row using the current row.

12

Row number of newly inserted row.

Update

Saves changes to the database. If the update is successful, a Commit will be issued; if the update fails, a Rollback will be issued.

13

1 if successful.

-1 if an error occurs.

Save Rows As

Displays Save As dialog box and saves rows in the format specified.

14

Number of rows filtered.

Number < 0 if an error occurs.

Print

Prints one copy of the DataWindow object.

15

0

Preview

Toggles between preview and print preview.

16

0

Preview With Rulers

Toggles between rulers on and off.

17

0

Query Mode

Toggles between query mode on and off.

18

0

Query Sort

Allows user to specify sorting criteria (forces query mode on).

19

0

Query Clear

Removes the WHERE clause from a query (if one was defined).

20

0


Adding graphs to a DataWindow object

Graphs are one of the best ways to present information. For example, if your application displays sales information over the course of a year, you can easily build a graph in a DataWindow object to display the information visually.

PowerBuilder offers many types of graphs and provides you with the ability to control the appearance of a graph to best meet your application's needs.

For information on using graphs, see Working with Graphs.

Adding InkPicture controls to a DataWindow object

The InkPicture control is designed for use on a Tablet PC and provides the ability to capture ink input from users of Tablet PCs. The control captures signatures, drawings, and other annotations that do not need to be recognized as text.

The InkPicture control is fully functional on Tablet PCs. If the Microsoft Tablet PC Software Development Kit (SDK) 1.7 is installed on other computers, InkPicture controls in DataWindow objects can accept ink input from the mouse.

For more information about ink controls and the Tablet PC, and to download the Tablet PC SDK, go to Microsoft Tablet PC Web site at http://msdn.microsoft.com/en-us/library/ms840465.aspx.

You use an InkPicture control with a table that has a blob column to store the ink data, and optionally a second blob column to provide a background image.

The InkPicture control behaves like a Picture control that accepts annotation. You can associate a picture with the control so that the user can draw annotations on the picture, then save the ink, the picture, or both.If you want to use the control to capture and save signatures, you usually do not associate a picture with it.

To add an InkPicture control to a DataWindow object, select Insert>Control>InkPicture from the menu. A dialog box displays to let you specify a blob column to store the ink data and another to use as a background image. After you specify the columns in the dialog box, the InkPicture control displays in the DataWindow and its Properties view includes a Definition tab page where you can view or change the column definitions.

If you insert the InkPicture control into a N-Up DataWindow object, you should specify the Row In Detail so the correct image displays. For example, if you have three rows in the detail band, you might enter 1 for the ink picture associated with the first, 2 for the second, and 3 for the third.

InkPicture controls are not supported in Crosstab DataWindows.

Adding OLE controls to a DataWindow object

You can add the following to a DataWindow object:

  • A column that contains a database binary large object (a blob object) using OLE 2.0

  • OLE 2.0 objects

For information on using OLE in a DataWindow object, see Using OLE in a DataWindow Object.

Adding reports to a DataWindow object

You can nest reports (nonupdatable DataWindow objects) in a DataWindow object.

For information on nesting reports, see Using Nested Reports.

Adding table blob controls to a DataWindow object

Use the table blob control to add rich text, image, or XPS blobs to the DataWindow object.

To add a table blob control to a DataWindow object

  1. Select Insert>Control>Table Blob from the menu bar.

  2. Click where you want to place the table blob.

    In the Database Binary/Text Large Object dialog box:

    1. Select the table

    2. Select column

    3. Enter the key clause

    4. Select the type

    5. Click OK.

Adding tooltips to a DataWindow control

Tooltips display text when the pointer pauses over a DataWindow column or control. This text can be used to explain the purpose of the column or control. To use this feature, select the column or control for which you want to create a tooltip and then select the Tooltip tab in the Properties view. You can use the tab to specify:

  • Text for the tooltip

  • Title for the tooltip

  • Color of the background and text

  • Icon for the tooltip

  • Delay before the tooltip appears and disappears

  • Whether the tooltip appears as a rectangle or callout bubble

For more information, see the section called “Tooltip.property” in DataWindow Reference.