
Originally Posted by
.paul.
the form was an mdichild?
i don't get it. can you show me the code?
Sorry.
I have a Parentform which is a MDIContainer. then i have this form load inside it using:
vb.net Code:
Private Sub tslScanItems_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tslScanItems.Click
Dim frm As New ScanItems
frm.MdiParent = Me
frm.Show()
End Sub
So instead of having the parentform load at startup i changed it to this form and when i went through everything it worked. When i go back to having it load inside the parent form it doesn't work.