Hiya guys ... met me appologise in advance. I have searched the forums but my question doesn't appear to be answered.
When I try to display a form within another I never seems to show.
Also when I try to show a form as a dialogue it just shows a new blank form.
Here is some of my code:
When I run this it just shows a blank dialog form. I get the same problem trying to show a child within an MDI.
Any suggestions?
When I try to display a form within another I never seems to show.
Also when I try to show a form as a dialogue it just shows a new blank form.
Here is some of my code:
Code:
Private Sub mnuOptions_Select(ByVal sender As Object, ByVal e As System.EventArgs) Handles mnuOptions.Select
'Show "frmOptions" form so that user must close before continuing on main form
Dim dlgOptions As New Form
dlgOptions.ShowDialog()
End Sub
When I run this it just shows a blank dialog form. I get the same problem trying to show a child within an MDI.
Any suggestions?