Hi,
I can add a treeview control to a group call "Projects" of a listbar as follows:
Dim TreeView As ListBarGroup = ListBar1.Groups .Add("Projects" )
TreeView.ChildC ontrol = Me.projecttree
However I wish to add another control to the same group. by going
treeview.childc ontrol = me.mycontrol, It just overwrites the first called
projecttree with the second control, How do I get 2 controls in the same
group.
Robert
I can add a treeview control to a group call "Projects" of a listbar as follows:
Dim TreeView As ListBarGroup = ListBar1.Groups .Add("Projects" )
TreeView.ChildC ontrol = Me.projecttree
However I wish to add another control to the same group. by going
treeview.childc ontrol = me.mycontrol, It just overwrites the first called
projecttree with the second control, How do I get 2 controls in the same
group.
Robert
Comment