在新增记录时,是在数据表中插入一条空白的记录,然后再空白记录中填入相应的信息,如果填入的信息中,在保存数据时如果输入的工号或姓名为空,可以弹出自定义的提示框。想请教一下如何可以判断数据表中的某个字段不能为空。
如果可以的话希望可以qq上指点一下!qq号:379528676
6 个解决方案
#1
isnull()
#2
if 工号 is NULL
then Messagebox('error','工号不能为空')
then Messagebox('error','工号不能为空')
#3
判断是否为空这个我知道!我是想知道怎么获取数据表中的字段。
#4
是获取datawindow控件中的字段要怎么做?
#5
使用datawindow,使用getitemstring,getitemnumber.....获取数据放到变量里,
然后
if isnull(工号) = true then
Messagebox('error','工号不能为空')
return
end if
然后
if isnull(工号) = true then
Messagebox('error','工号不能为空')
return
end if
#6
谢谢!
#1
isnull()
#2
if 工号 is NULL
then Messagebox('error','工号不能为空')
then Messagebox('error','工号不能为空')
#3
判断是否为空这个我知道!我是想知道怎么获取数据表中的字段。
#4
是获取datawindow控件中的字段要怎么做?
#5
使用datawindow,使用getitemstring,getitemnumber.....获取数据放到变量里,
然后
if isnull(工号) = true then
Messagebox('error','工号不能为空')
return
end if
然后
if isnull(工号) = true then
Messagebox('error','工号不能为空')
return
end if
#6
谢谢!