Login Problems

  • Thread starter Thread starter Mitchel
  • Start date Start date
M

Mitchel

OK, can someone tell me why this doesnt work?
Im a noob... All i want to do it show a list after you give correct
login cred - sound easy enough


Private Sub Command3_Click()

frmLogin.Show

If frmLogin.LoginSucceeded = True Then List2.Visible = True

End Sub
 
OK, can someone tell me why this doesnt work?
Im a noob... All i want to do it show a list after you give correct
login cred - sound easy enough

Private Sub Command3_Click()

frmLogin.Show

If frmLogin.LoginSucceeded = True Then List2.Visible = True

End Sub

Seems VB6 code but, I suppose:

Private Sub Command3_Click()

frmLogin.Show

If frmLogin.LoginSucceeded = True Then
List2.Visible = True
End if

End Sub
 
Seems VB6 code but, I suppose:

Private Sub Command3_Click()

frmLogin.Show

If frmLogin.LoginSucceeded = True Then
List2.Visible = True
End if

End Sub

Doesnt work bud...
 
Doesnt work bud.

You have to tell us how it doesn't work. What goes wrong?

You probably want to use frmLogin.ShowDialog() so that control doesn't
return until the login form exits.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top