问题一:
在判断两次输入是否相同时,如不同,则显示
If Text3.Text = Text4.Text Then
sSQL = "select * from 管理员 where MANAGER_ID = '%" + Text1.Text + "%' AND MANAGER_PASS='" + Text2.Text + "'"
Else
MsgBox "两次输入的密码不相同,请重新输入!"
exit sub
End If
问题二:
你的sSQL语句的问题,你的管理员表只有用户名和密码呀,
将:sSQL = "select * from 管理员 where MANAGER_ID = '%" + Text1.Text + "%' AND MANAGER_PASS='" + Text2.Text + "'"
改为:(假设你的用户名是用text1输入,密码是用text3、text4输入的。)
sSQL = "select * from 管理员 where 用户名 = '" + Text1.Text + "' AND 密码='" + Text3.Text + "'"