pb判定数据表里的某个信息不能为空值。
例如,数据表中含有姓名,学号等数据。需要判定,保存时姓名和学号不能为空值,用PB命令怎么写?求高手啊...
例如,数据表中含有姓名,学号等数据。需要判定,保存时姓名和学号不能为空值,用PB命令怎么写?求高手啊
展开
3个回答
七鑫易维信息技术
2024-09-02 广告
2024-09-02 广告
Play Video 七鑫易维是致力于机器视觉和人工智能领域的高新科技企业,迄今已专注眼球追踪技术的研发、创新与应用超过14年,拥有完全自主知识产权,全球专利总量655余项。 作为眼球追踪技术领域的全球知名品牌,七鑫易维的产品体系覆盖眼动分...
点击进入详情页
本回答由七鑫易维信息技术提供
展开全部
isnull(姓名) true为空
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
比如数据窗口为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
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询