G Guest Jan 12, 2005 #1 I am probably barking up the wrong tree completely but can you load forms in panels. If not what can i use to get that kind of effect.
I am probably barking up the wrong tree completely but can you load forms in panels. If not what can i use to get that kind of effect.
K Ken Tucker [MVP] Jan 12, 2005 #2 Hi, Set the forms toplevel property to false add it to the panels control and then show it. Dim frm As New Form2 frm.TopLevel = False frm.Location = New Point(0, 0) Panel1.Controls.Add(frm) frm.Show() Ken
Hi, Set the forms toplevel property to false add it to the panels control and then show it. Dim frm As New Form2 frm.TopLevel = False frm.Location = New Point(0, 0) Panel1.Controls.Add(frm) frm.Show() Ken