aspvbnetnerd
Programmer
I have a form that is called FormLogin and FormLogin is the startup form.
If the user is validated the I want to show the Main form (FormMain) and close then close the FormLogin form.
but when I do me.close the applicationen closes.
What am I doing wrong?
George
If the user is validated the I want to show the Main form (FormMain) and close then close the FormLogin form.
but when I do me.close the applicationen closes.
Code:
Dim FormMain As New ArkivApp.FormMain
FormMain.Show()
Me.Close()
What am I doing wrong?
George