N
N! Xau
HI,
my project's start object is a login form.
When login is successful, it opens a new form, with:
Dim CalledForm As New MyForm
CalledForm.Owner = Me
CalledForm.Show()
Now I want login form to disappear once CalledForm has opened.
Setting enabled / visible to true, form is still in memory and the
application does not close.
With Me.Dispose() into login form code, CalledForm closes too (not only
login form).
What is the right way?
Thanks
N! Xau
my project's start object is a login form.
When login is successful, it opens a new form, with:
Dim CalledForm As New MyForm
CalledForm.Owner = Me
CalledForm.Show()
Now I want login form to disappear once CalledForm has opened.
Setting enabled / visible to true, form is still in memory and the
application does not close.
With Me.Dispose() into login form code, CalledForm closes too (not only
login form).
What is the right way?
Thanks
N! Xau