Dim r As Row = Tables("业绩统计").Current If r.isnull("客户名称") OrElse r.isnull("货物名称") Then Messagebox.Show("不能为空,请输入数据!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information) Return End If Tables("业绩统计").AddNew
-- 作者:狐狸爸爸
-- 发布时间:2011/10/12 18:22:00
--
Dim r As Row = Tables("业绩统计").Current If r IsNot Nothing AndAlso (r.isnull("客户名称") OrElse r.isnull("货物名称")) Then Messagebox.Show("不能为空,请输入数据!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information) Return End If Tables("业绩统计").AddNew
[此贴子已经被作者于2011-10-12 18:22:37编辑过]
-- 作者:lgcfoxtable
-- 发布时间:2011/10/12 18:23:00
--
试了不行
-- 作者:狐狸爸爸
-- 发布时间:2011/10/12 18:23:00
--
Dim r As Row = Tables("业绩统计").Current If r IsNot Nothing AndAlso (r.isnull("客户名称") OrElse r.isnull("货物名称")) Then Messagebox.Show("不能为空,请输入数据!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information) Return End If Tables("业绩统计").AddNew