- Home
·
- Encryption
·
- Login username/password and opens another window and shuts login screen
Login username/password and opens another window and shuts login screen
Login username/password and opens another window and shuts login screen
Rate Login username/password and opens another window and shuts login screen
(2(2 Vote))
'Create 2 text boxes named Text1 for username Text2 For password'
'Create a Command Button'
Private Sub Command1_Click()
If Text1.Text = "username" And Text2.Text = "password" Then
MsgBox "access granted"
Form2.Show
Form1.Hide
Else
MsgBox "access denied"
End If
End Sub
Login username/password and opens another window and shuts login screen Comments
No comments yet — be the first to post one!
Post a Comment