There are 2 forms, form1 and form2.
I want to add the form2 inside form1.
This shouldn't be like: form1->mdiContainer and form2->child
Do something like that: (code in a button in form1)
dim f as new form2
me.controls.add(f)
Is this possible ?
One other thing i can't find out why is happening is:
In form2 i have some controls (textboxes, buttons, frames etc).
I want to add these controls into form1. So i write in a button of form1:
dim f as new form2
dim c as control
for each c in me.controls
me.controls.add(c)
next
The problem is that it only adds some of the controls. If i add in form2 some extra controls or delete some, hitting the button in form1 different controls are added. But not all again.
Tnx
I want to add the form2 inside form1.
This shouldn't be like: form1->mdiContainer and form2->child
Do something like that: (code in a button in form1)
dim f as new form2
me.controls.add(f)
Is this possible ?
One other thing i can't find out why is happening is:
In form2 i have some controls (textboxes, buttons, frames etc).
I want to add these controls into form1. So i write in a button of form1:
dim f as new form2
dim c as control
for each c in me.controls
me.controls.add(c)
next
The problem is that it only adds some of the controls. If i add in form2 some extra controls or delete some, hitting the button in form1 different controls are added. But not all again.
Tnx