repeat of gui problem in MDI
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hello, i have an MDI form that called FORM1 an I have a child form FORM2 I wrote: form2.MDIPerent = form1 it works but in the side i get scroll bars how I get over the scroll bars? P.S I try to use autoscroll = true but it can't be done on an MDI FORM
-
hello, i have an MDI form that called FORM1 an I have a child form FORM2 I wrote: form2.MDIPerent = form1 it works but in the side i get scroll bars how I get over the scroll bars? P.S I try to use autoscroll = true but it can't be done on an MDI FORM
you must use this code Form2 frm = new Form2(); frm.MDIParrent = this; frm.Show();;) note: Your MDI Form must larger than child Form.