OK I tried holding off on asking this, but I just can't seem to find a solution, so now have to ask ...
I have an MDI form called "MDIParent1". I have another form called "Form1".
I am trying to make Form1 a child of MDIParent1, and so when I statr the app my child form sits nicely inside my parent form.
It doesn't. All I see is the child form on screen.
I have no idea how to make the connection.
I have this ...... which is quite obviously wrong
I am only guessing it even goes in the MDIParent Load event. Why do I get the feeling I am in for a hard slog stepping up from VB6 !Code:Private Sub MDIParent1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Form1.MdiParent = Me
ActivateMdiChild(Form1)
'Form1.Show()
End Sub
