R
Rob
I am not sure if this can be implemented....
There exists a TabContol (added at design time) to a form..
Tabs for this TabContol get added at run time.
Usage of the following 2 properties works quite welll in order to reference
the control.
Public Property TabControlAvailable() As TabControl
Get
Return Me.TabControl1
End Get
Set(ByVal value As TabControl)
Me.TabControl1 = value
End Set
End Property
Public Property SelectedTabAvailabe() As TabPage
Get
Return Me.TabControl1.SelectedTab
End Get
Set(ByVal value As TabPage)
Me.TabControl1.SelectedTab = value
End Set
End Property
However, there is also a Flow Layout Panel that also gets added to the Tab
page (dynamically) at runtime...
How may I access its properties ? Is it even possible ?
There exists a TabContol (added at design time) to a form..
Tabs for this TabContol get added at run time.
Usage of the following 2 properties works quite welll in order to reference
the control.
Public Property TabControlAvailable() As TabControl
Get
Return Me.TabControl1
End Get
Set(ByVal value As TabControl)
Me.TabControl1 = value
End Set
End Property
Public Property SelectedTabAvailabe() As TabPage
Get
Return Me.TabControl1.SelectedTab
End Get
Set(ByVal value As TabPage)
Me.TabControl1.SelectedTab = value
End Set
End Property
However, there is also a Flow Layout Panel that also gets added to the Tab
page (dynamically) at runtime...
How may I access its properties ? Is it even possible ?