In some applications, you might want to make certain properties of controls in DataWindow objects dependent on the data, which is not known to you when you define the DataWindow object in the painter. For these situations you can define property conditional expressions, which are expressions that are evaluated at runtime.
You can use these expressions to modify the appearance and behavior of DataWindow objects conditionally and dynamically during execution. When the conditions of the expressions have been met, the results of the expressions change the values of properties of controls in the DataWindow objects.
For example, in the following DataWindow object, the Salary Plus Benefits column has a Shadow box border highlighting each data value that is greater than $60,000.
Figure 23-2: Conditional implementation of shadow box highlighting
To control the display of the border, you define a conditional expression for the column’s Border property. When users run the DataWindow object, PocketBuilder changes the border of individual data values based on the condition (value greater than $60,000).
Figure 23-3 shows the Salary_Plus_Benefits column selected in the Design view. To the right of the Design view, the Properties view shows properties for the column, including the Border property. Next to the Border property is a button for accessing the dialog box where you enter the expression. The button displays a red equals sign with a slash through it when no expression has been entered, and a green equals sign with no slash when it has.
You click the button to open the Border expression dialog box. A line in the figure connects the button to the dialog box. In this example, although the Border property is set to NoBorder in the Properties view, the expression defined for the property overrides the NoBorder setting at runtime.
Figure 23-3: Setting a conditional expression for the Border property
The expression you enter almost always begins with If
.
Then you specify three things: the condition, what happens if it
is true, and what happens if it is false. Parentheses surround the
three things and commas separate them:
If( expression, true, false )
The following expression is used in Figure 23-3. Because the expression is for the Border property, the values for true and false indicate particular borders. The value 1 means Shadow box border and the value 0 means no border:
If(salary_plus_benefits > 60000, 1, 0)
When users run the DataWindow object, PocketBuilder checks the value in the computed column called salary_plus_benefits to see if it is greater than 60,000. If it is (true), PocketBuilder displays the value with the Shadow box border. If not (false), PocketBuilder displays the value with no border.
Usually you specify a number to indicate what to assign to
a particular property. For example, the following list shows all
of the borders you can specify and the numbers you use. If you want
the border property to be Shadow box for either true or false, you
specify 1
in the appropriate
position in the If statement.
0
—None
1
—Shadow
box
2
—Box
3
—Resize
(not supported on the Windows CE platform)
4
—Underline
5
—3D
Lowered
6
—3D
Raised
In the Properties view, the list of choices for setting a property includes the values that correspond to choices in parentheses. This makes it easier to define an expression for a property; you do not need to look up the values. For example, if you want to specify the 3D raised border in your expression, you use the number 6, as shown in the drop-down list.
Figure 23-4: Drop-down list for Border property values
For details on the values of properties you can set using expressions, see “Supplying property values”.
For information about properties associated with a DataWindow object, see the discussion of DataWindow object properties in the online Help.
You can programmatically modify the properties of controls in a DataWindow object during execution. For more information, see the DataWindow Reference in the online Help.