This question is locked. New answers and comments are not allowed.
I am new to your controls, in VB.Net I am trying to dynamicaly build a form. I have added the RadTabstrip to my .Net form and I can successfully add tabs in via code. My problem is I want to add controls to the tab via code also(RadTetxbox, RadListbox) however it is not adding the control to the correct tab. Below is the code:
Private Sub Add_Text(ByVal sorder As String, ByVal itab As Integer)
Dim txt As New RadTextBox
txt.Name = "Text_" & sorder
txt.Multiline = True
txt.ScrollBars = ScrollBars.Both
Me.RadTabStrip1.SelectedTab = Me.RadTabStrip1.Items(itab)
Me.TabItem1.ContentPanel.Controls.Add(txt)
itab is the tab I want to add the control to, it always adds the control to my first tab on the RadTabStrip control.