changing richtext from treeview

Mookie_jones

Member
Joined
Oct 23, 2005
Messages
16
Programming Experience
Beginner
I am using a treeview control to modify program codes so i can expand and contract similar to #region.

the file will first get read into a richtext box.

what i want to happen though is when i change the label on a treeview node, i want the richtext line to change as well to reflect it. this is not happening with the following code

rtb.Lines(tv.SelectedNode.Tag) = tv.SelectedNode.FullPath


the richtext line does not change. what am i doing wrong?
 
Back
Top