Hello,
I have a form with a treeview on it, and i have a class who have a
property returning a Treeview
I want to affect my treeview with the property of the class
Private Sub Form1_Load....
Dim myclass as ClassTV
TreeView1 = myclass.TV
end sub
But it doesn't work!!!
I have the same problem with a label
Dim lbl as new label
lbl.text="Test"
label1=lbl (label1 is the name of the control who is in my form)
If someone can help me
Thanks a lot
I have a form with a treeview on it, and i have a class who have a
property returning a Treeview
I want to affect my treeview with the property of the class
Private Sub Form1_Load....
Dim myclass as ClassTV
TreeView1 = myclass.TV
end sub
But it doesn't work!!!
I have the same problem with a label
Dim lbl as new label
lbl.text="Test"
label1=lbl (label1 is the name of the control who is in my form)
If someone can help me
Thanks a lot
Comment