View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ExcelMonkey ExcelMonkey is offline
external usenet poster
 
Posts: 553
Default Tag Property for TreeView Node

Do indivua nodes in TreeViews have a Tag property in VBA? IF so, how you
access it upon adding the node? The code below addes the node.

UserForm1.TreeView1.Nodes.Add relative:="TypeA", _
relationship:=tvwChild, _
Key:= "text1" & ":" & "text2", _
Text:= "text3" & ":" & "text4"

Thanks

EM