treeview help needed

  • Thread starter Thread starter JohnE
  • Start date Start date
J

JohnE

Hello. I have a main form that has a treeview (parent and child) on it and a
tab control with subforms and textboxes. The treeview control works and
displays just what is needed. But, I am lost as to how to make a record
appear on the tab control when a child in the treeview is selected. I have
used a combobox or listbox after update event in the past to have the
selected record information displayed. Need to get the treeview child
selection to do the same.
Can anyone help out on this or point me in the right direction to a
sample/example?
Thanks... John
 
JohnE said:
Hello. I have a main form that has a treeview (parent and child) on it
and a
tab control with subforms and textboxes. The treeview control works and
displays just what is needed. But, I am lost as to how to make a record
appear on the tab control when a child in the treeview is selected. I
have
used a combobox or listbox after update event in the past to have the
selected record information displayed. Need to get the treeview child
selection to do the same.
Can anyone help out on this or point me in the right direction to a
sample/example?
Thanks... John

Use the Treeview's NodeClick event and refer to Node.Text to obtain the
value to filter the form to the correct record. Something like:

Private Sub TreeView1_NodeClick(ByVal Node As MSComctlLib.Node)
Me.Filter = "MyFieldName = '" & Treeview1.Text & "'"
Me.FilterOn = True
End Sub
 
Back
Top