我照着书上给的代码原样输入的,怎么会报错啊??不解!!
这是前面的代码:
long ll_id,ll_i
date ld_birthday
string ls_name,ls_nation,ls_sex,ls_home,ls_tel,ls_party
if sle_id.text="" or isNull(sle_id.text) then
messagebox ("缺少数据","请输入学生学号")
sle_id.setfocus ()
return
else if sle_name.text=""OR isNull(sle_name.text)then
messagebox ("缺少数据","请输入学生姓名")
sle_name.setfocus ()
return
end if
if sle_birthday.text<>"" and not isNull(sle_birthday) then
if isDate (sle_birthday.text) then
ld_birthday= date (sle_birthday.text)
else
messagebox ("输入数据错误","请用“年-月-日”的日期格式")
sle_birthday.setfocus ()
return
end if
end if
报了2个错,光变停留在第一行“long”前面,求大神们帮忙解决呀!!
------解决方案--------------------
字符串要用半角的 双引号 或 单引号