我需要代码设置一个限制,允许用户保存空ID& USERNAME在文本框中作为必填字段中的id lo-gin?
答案 0 :(得分:1)
您可以在验证时验证它;
Private sub Validate_Click()
// verify username
If trim(Username.text) = "" then
Msgbox ("Please enter a username.")
Username.focus()
End sub
end if
// Verify password
If trim(pwd.text) = "" then
Msgbox ("Please enter a password.")
pwd.focus()
End sub
end if
-- Your codes
End sub
答案 1 :(得分:0)
试试这个......
if trim(text1.text) ="" then
'message here
text1.setfocus
end if