DataParse
向绑定字段(列)或者变量中写入数据的时候执行。
e参数属性:
Sender:返回触发事件的控件
Form: 返回控件所在的窗口
Text: 返回用户输入的内容
Value: 返回或设置写入的值
示例
假定在某个文本框中,希望通过输入代码来输入国家名称,可将DataParse事件代码设为:
If
e.Text =
"cn" Then
e.Value
= "中国"
ElseIf
e.Text =
"usa" Then
e.Value
= "美国"
ElseIf
e.Text =
"jp" Then
e.Value
= "日本"
Else
e.Value =
e.Text
End
If
这样用户在文本框输入"cn",离开此文本框时,"cn"会被自动替换为"中国"。