pb中数据窗口的editchanged事件的参数

2025-06-29 05:17:51
推荐回答(1个)
回答1:

row 当前行
Long by value. The number of the row containing the item whose value is being changed
dwo 当前可以指代的对象,比如我想得到列名就可以是ls_name = dwo.name
DWObject by value. A reference to the column containing the item whose value is being changed. Dwo is a reference to the column control, not the name of the column.
data 当前所在行列的数据
String by value. The current contents of the DataWindow edit control.
例子:
st_1.Text = "Row " + String(row) &

+ " in column " + dwo.Name