GetError

返回该行指定列的错误信息。

语法:

GetError(DataCol)

DataCol: 指定的列或者列名。

示例

Dim dr As DataRow = Tables("A").Current.DataRow
dr.SetError(
"第二列","错误提示内容")
MessageBox.Show(dr.GetError(
"第二列"))

参考:动态设置错误信息


本页地址:http://www.foxtable.com/webhelp/topics/2683.htm