pb判定数据表里的某个信息不能为空值,用PB命令怎么写?
1个回答
展开全部
比如数据窗口为dw_1,姓名字段为name,学号为id.首选要确定的是多行数据还是一行数据.
①1行数据:
string ls_temp
dw_1.accepttext()//将用户编辑数据窗口的值存入缓存区
ls_temp = dw_1.object.name[1]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','姓名不能为空!')
return
end if
ls_temp = dw_1.object.id[1]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','学号不能为空!')
return
end if
② 多行:
string ls_temp
long i
dw_1.accepttext()//将用户编辑数据窗口的值存入缓存区
for i=1 to dw_1.rowcount()
ls_temp = dw_1.object.name[i]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','第'+string(i)+'行姓名不能为空!')
return
end if
ls_temp = dw_1.object.id[i]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','第'+stirng(i)+'行学号不能为空!')
return
end if
next
①1行数据:
string ls_temp
dw_1.accepttext()//将用户编辑数据窗口的值存入缓存区
ls_temp = dw_1.object.name[1]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','姓名不能为空!')
return
end if
ls_temp = dw_1.object.id[1]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','学号不能为空!')
return
end if
② 多行:
string ls_temp
long i
dw_1.accepttext()//将用户编辑数据窗口的值存入缓存区
for i=1 to dw_1.rowcount()
ls_temp = dw_1.object.name[i]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','第'+string(i)+'行姓名不能为空!')
return
end if
ls_temp = dw_1.object.id[i]
if isnull(ls_temp) or ls_temp ='' then
messagebox('提示','第'+stirng(i)+'行学号不能为空!')
return
end if
next
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询