Contador = 0
Private Sub cmdOK_Click()
If txtUserName <> "" And txtPassword <> "" Then
If Contador <= 1 Then
If txtUserName = "Admin" And txtPassword = "Password" Then
LoginSucceeded = True
Timer1.Enabled = False
Contador = 0
frm2.Show
Unload Me
Else
MsgBox "Clave de acceso o Usuario incorrecto", vbCritical, "Login"
txtUserName.SetFocus
SendKeys "{Home}+{End}"
Contador = Contador + 1
End If
Else
Mensaje = MsgBox("Acceso denegado", vbCritical, "Login")
End
End If
End If
End Sub