J
John
Hi
Is there a way to open a form hidden/invisible while it is populating its
controls, and then make it visible once it is done? I am using the following
code but the form remains visible.
cform = New frmClients
cform.Visible = False ' this does not seem to make form hidden (not
visible)
cform.TopLevel = False
Me.FormsPanel.Controls.Add(cform) 'Me is a main/parent form
cform.Show()
cform.BringToFront()
cform.Visible = True
Thanks
Regards
Is there a way to open a form hidden/invisible while it is populating its
controls, and then make it visible once it is done? I am using the following
code but the form remains visible.
cform = New frmClients
cform.Visible = False ' this does not seem to make form hidden (not
visible)
cform.TopLevel = False
Me.FormsPanel.Controls.Add(cform) 'Me is a main/parent form
cform.Show()
cform.BringToFront()
cform.Visible = True
Thanks
Regards