Hi all,
I'm creating an application launcher for our company and I would like to use the TreeNode control (we have 100s of network applications that need a structure), when a user clicks a Node (Example: Application 1) then I would like to run the program on it's own i.e. the app launcher isn't waiting for it to close etc.
How would I do this? All I have currently is the TreeNode structure in AD with no code behind it apart from:
private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
}
Many thanks