Tree View Help

jsumphress

Member
Joined
Sep 20, 2005
Messages
6
Programming Experience
Beginner
I am trying to create a help system in my app. I have the tree with all the nodes already defined. When I click on a particular node, I want a text box to display a help file. Much like the Internet Explorer Help.

I'm using this code to display the help file in the textbox:
Dim FILE_NAME As String = "C:\00001.hlp"

Dim objReader As New System.IO.StreamReader(FILE_NAME)

txtHelpHelp.Text = objReader.ReadToEnd

objReader.Close()


I can't figure out how to make the selected node display the file....any help would be appreciated.
 
Last edited:
Back
Top