Hi how to put two Treeviews in one Form ? Georg
G Georg Member Licensed User Longtime User May 2, 2008 #1 Hi how to put two Treeviews in one Form ? Georg
klaus Expert Licensed User Longtime User May 2, 2008 #2 You must add 2 TreeView objects in Tools/Add Objects with two different names and declare both to the same Form. B4X: Sub App_Start Form1.Show TreeView1.New1("Form1",10,5,200,100) TreeView2.New1("Form1",10,120,200,100) End Sub Attached an example Best Regards Attachments Test2TreeViews.zip 9.2 KB · Views: 207 Last edited: May 3, 2008
You must add 2 TreeView objects in Tools/Add Objects with two different names and declare both to the same Form. B4X: Sub App_Start Form1.Show TreeView1.New1("Form1",10,5,200,100) TreeView2.New1("Form1",10,120,200,100) End Sub Attached an example Best Regards