Select a Node in a TreeView with VBA - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T17:33:21Zhttp://stackoverflow.com/feeds/question/459589http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/459589/select-a-node-in-a-treeview-with-vba1Select a Node in a TreeView with VBAdaharon2009-01-19T23:20:39Z2009-01-20T00:23:37Z
<p>I have a TreeView within a UserForm in Excel.<br>
When a Node is selected from the TreeView, a ListBox is populated with data.<br>
When an item in the ListBox is double-clicked, a separate UserForm is shown which allows the user do to stuff.<br>
Once the user returns back to the TreeView UserForm, I want the Node that was selected previously to be highlighted.</p>
<p>The problem is that the UserForm basically resets itself, and I can't figure out how to select a Node with VBA.</p>
<p>I'm at the point where I'm debating on whether or not I can just manually fire a NodeClick event, as everything else I've tried has failed.</p>
<p>Any tips?</p>
http://stackoverflow.com/questions/459589/select-a-node-in-a-treeview-with-vba/459723#4597230Answer by Ryan for Select a Node in a TreeView with VBARyan2009-01-20T00:23:37Z2009-01-20T00:23:37Z<p>You have several options. First, when the TreeView UserForm displays the second UserForm, you either need to:</p>
<ol>
<li>Save the ID of the selected node (use a form-level or module-level variable). Then you need to write a method to select the node upon return to the form. IIRC, you need to have a unique 'Key' or ID for each node element and then use TreeView.Select for the node returned from TreeView.FindNode. -- or --</li>
<li>Hide the TreeView UserForm instead of closing it (Me.Hide). When the second UserForm is closed (or OK/Cancel pressed), then show the TreeView UserForm again (TreeViewForm.Show).</li>
</ol>