PB9.0中的数据窗口表的问题。
我想有这个功能:在添加或修改数据后,当表中有的数值是空的,那么将不会被保存。我在保存按钮写了如下代码,但是这些代码不发挥作用,空值还是给保存了,就像截图的那样被保存了,怎...
我想有这个功能:在添加或修改数据后,当表中有的数值是空的,那么将不会被保存。我在保存按钮写了如下代码,但是这些代码不发挥作用,空值还是给保存了,就像截图的那样被保存了,怎样修改下面的代码???
string s_col,s_text
s_col=dw_1.getcolumnname()
s_text=trim(dw_1.gettext())
choose case s_col
case "学号"
if len(s_text)=0 then
messagebox("提示","学号不能为空",exclamation!)
return
end if
case "姓名"
if len(s_text)=0 then
messagebox("提示","姓名不能为空",exclamation!)
return
end if
case "性别"
if len(s_text)=0 then
messagebox("提示","性别不能为空",exclamation!)
return
end if
case "专业"
if len(s_text)=0 then
messagebox("提示","专业不能为空",exclamation!)
return
end if
case "班级"
if len(s_text)=0 then
messagebox("提示","班级不能为空",exclamation!)
return
end if
case "电话"
if len(s_text)=0 then
messagebox("提示","电话不能为空",exclamation!)
return
end if
case "邮箱"
if len(s_text)=0 then
messagebox("提示","邮箱不能为空",exclamation!)
return
end if
case "QQ"
if len(s_text)=0 then
messagebox("提示","QQ不能为空",exclamation!)
return
end if
end choose 展开
string s_col,s_text
s_col=dw_1.getcolumnname()
s_text=trim(dw_1.gettext())
choose case s_col
case "学号"
if len(s_text)=0 then
messagebox("提示","学号不能为空",exclamation!)
return
end if
case "姓名"
if len(s_text)=0 then
messagebox("提示","姓名不能为空",exclamation!)
return
end if
case "性别"
if len(s_text)=0 then
messagebox("提示","性别不能为空",exclamation!)
return
end if
case "专业"
if len(s_text)=0 then
messagebox("提示","专业不能为空",exclamation!)
return
end if
case "班级"
if len(s_text)=0 then
messagebox("提示","班级不能为空",exclamation!)
return
end if
case "电话"
if len(s_text)=0 then
messagebox("提示","电话不能为空",exclamation!)
return
end if
case "邮箱"
if len(s_text)=0 then
messagebox("提示","邮箱不能为空",exclamation!)
return
end if
case "QQ"
if len(s_text)=0 then
messagebox("提示","QQ不能为空",exclamation!)
return
end if
end choose 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询