How can I get the combobox to display what is in mytreenode.text
and not the control type
Right now each item looks like this TreeNode: myNodeTitle
I don't care to have the object type just the title.
If I load in the just the text then I don't have access to the node values which I need.
If I load in the node I want it to show the text within the combo list by itself.
VB Code:
Dim myTreeNode As New TreeNode For Each myTreeNode In myTreeViewMenu.Nodes cboSection.Items.Add(myTreeNode) Next




Reply With Quote