I am having some issues with my login form. Its acting like a spash screen where it stays on only for a few seconds until my program loads and then closes. I have made sure that I created the login form with the template and checked my code, but it shouldnt be that difficult! Help!

login screen acting as a spash screen
Luis Alonso Ramos
Dan Scott
Gabor Ratky
Rahul Singla
MeanMisterE
nope. But what I ended up doing was just scrapping the whole thing and sort of starting from scratch! I couldnt figure out where the problem was, even when commenting out everything, the problem still occured. so I partially started over and now everything is working...strange.
Anyway, Thanks to everyone for taking the time to help me out. Appreciate it!
DiamonDogX
CFIG
Understandable, but I have tried it so many ways that I am not even sure which one to choose. I guess i am just wondering if anyone has encountered this problem before-that the login screen is basically acting as the splash screen.
Here is just one that i have tried:
Private Sub ButtonLoginOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonLoginOK.Click Dim quickwiremainform As New Form If TextBoxUserID.Text = "default" And _TextBoxLoginPassword.Text =
"password" Then Me.Hide()quickwiremainform.ShowDialog()
End IfJNils