我用vb做的一个窗体输入用户名密码登陆,用户名和密码都来自数据库中members表,但老是提示loop缺少do

2024-11-22 19:05:34
推荐回答(1个)
回答(1):

loop 移到两个end if 后面。不过这段代码有点……
改成这样简单点,不用循环
Set rst = conn.Execute("select m_account,m_password from members where 姓名字段='"& text1.text &"' and 密码字段='" & text2.text &"' ")
if rst.eof=false or rst.bof=false then
me.hide
form2.show