EditChanged event
Description
Occurs for each keystroke the user types in an edit control
in the DataWindow.
PowerBuilder event information
Event ID: pbm_dwnchanging
Argument |
Description |
---|---|
row |
Long by value. The number of the row |
dwo |
DWObject by value. A reference to the |
data |
String by value. The current contents |
Web ActiveX event information
Event name: onEditChange
Argument |
Description |
---|---|
Row |
Number. The number of the row containing |
Name |
String. The name of the column containing |
Data |
String. The current contents of the DataWindow |
Return Values
There are no special outcomes for this event. The only code
is:
-
0 Continue processing
Examples
This example displays the row and column that the
user is editing in a StaticText control:
1 |
st_1.Text = "Row " + String(row) & |
1 |
+ " in column " + dwo.Name |