2 Treeviews in one Form

klaus

Expert
Licensed User
Longtime User
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: 176
Last edited:
Top