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.C ontrols.Add(cfo rm) 'Me is a main/parent form
cform.Show()
cform.BringToFr ont()
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.C ontrols.Add(cfo rm) 'Me is a main/parent form
cform.Show()
cform.BringToFr ont()
cform.Visible = True
Thanks
Regards
Comment