Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding controls in form

Status
Not open for further replies.

VBakias

MIS
May 24, 2005
219
GR
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 think the reason for the problem adding controls might be something to do with where the controls are. Assume:

Form2
TextBox1
TextBox2
Panel1
TextBox3
TextBox4
Panel2
TextBox5
TextBox6

Although all eight controls are on Form2, only TextBox1, TextBox2, Panel1 and Panel2 are directly owned by Form2; TextBox3 and TextBox4 are directly owned by Panel1 and TextBox5 and TextBox6 by Panel2.

If you use a recursive routine you should find that you pick up the all the controls.

Hope this helps.
 
- topmost is false.

- All the controls are directly on form2.
 
The problem with the controls is indexing because you are moving the controls from one form to another, you are in effect deleting the controls from form1 and therefore messing up the indexing.

This works:

Code:
    Dim f3 As New Form3
    For a As Integer = Me.Controls.Count - 1 To 0 Step -1
      f3.Controls.Add(Me.Controls(a))
    Next a
    f3.Show()

Hope this helps.
 
and using Chrissie's trick:

Code:
  Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click

    Dim f3 As New Form3
    f3.TopLevel = False
    For a As Integer = Me.Controls.Count - 1 To 0 Step -1
      f3.Controls.Add(Me.Controls(a))
    Next a
    Me.Controls.Add(f3)
    f3.Show()

  End Sub

should do what you are asking.


Hope this helps.
 
and don't forget that vb's intellisense (intelligent??) will not know about .toplevel.

Christiaan Baes
Belgium

If you want to get an answer read this FAQ faq796-2540
There's no such thing as a winnable war - Sting
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top