pb 向access中插入数据 出错!
if sle_user.text="" or sle_pass.text="" then
messagebox("woring","please insert userid or password")
sle_user.setfocus()
else
string myid,mypass;
myid=sle_user.text
mypass=sle_pass.text
insert into t_user(user_id,user_password) values (:myid,:mypass)
messagebox("infomation","insert scucess")
end if
以上代码是在注册按钮上写的, 编译出错:stntax error
错在哪呢.