G
g
Hello All,
I have a treeview in my form using A2K. Everything works fine but I have to
figure out where in the code I can put to call a function when the expand (+)
was click once.
MainMenu
|___+ Add Menu
|___+ View Report
Private Sub TreeView1_NodeClick(ByVal Node As Object)
If Node.Tag = "Report0" Then
Call Report0_Click
End If
End Sub
The node click will call the function if i click once the item title but I
wanted to figure out what if I click the + beside the report item instead of
the title.
All help will greatly appreciated.
Thanks
g
I have a treeview in my form using A2K. Everything works fine but I have to
figure out where in the code I can put to call a function when the expand (+)
was click once.
MainMenu
|___+ Add Menu
|___+ View Report
Private Sub TreeView1_NodeClick(ByVal Node As Object)
If Node.Tag = "Report0" Then
Call Report0_Click
End If
End Sub
The node click will call the function if i click once the item title but I
wanted to figure out what if I click the + beside the report item instead of
the title.
All help will greatly appreciated.
Thanks
g