How to make an easy Login Form
1-Make 2 Textbox
2-Make 2 Button. Call one Login and the other one Cancel
3-Make a Labbel "Username" and an other "Password"
Coding Time
Click on Login then type that
Click on Cancel and type that
1-Make 2 Textbox
2-Make 2 Button. Call one Login and the other one Cancel
3-Make a Labbel "Username" and an other "Password"
Coding Time
Click on Login then type that
- Code:
If text1.text = "Username" & text2.text = "Password" then
Form2.Show
Else
Msgbox ("Invalid Password, Please try again.")
End if
End sub
Click on Cancel and type that
- Code:
Unload me