EditChanged
event (DataWindows)
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 containing the |
|
dwo |
DWObject by value. A reference to the column |
|
data |
String by value. The current contents of the |
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 2 |
st_1.Text = "Row " + String(row) & + " in column " + dwo.Name |
See also