up vote 0 down vote favorite
share [g+] share [fb]

I am making a Help-form for my application. A Help-form normally has a ListView on the left and a RichTextbox on the right. When you click on a Help topic in the ListView, the text in the RichTextbox is supposed to change accordingly. The text file is part of the application's resources.

Any help will be much appreciated.

Thanks.

link|improve this question

Is this VB6 or VB.NET? – JTA Jun 13 '09 at 17:55
It's Visual Basic.NET. – Geoffrey Van Wyk Jun 13 '09 at 18:23
feedback

2 Answers

You need to load the file into memory, and then put it into a string. When the user clicks the string, TextBox.Value (I think that's the proper property) should be set to the string.

If you're excessively lazy (after all, it is a Saturday), check out this link: http://www.freevbcode.com/ShowCode.Asp?ID=466. It has what you're looking for, as long as its VB5/6/VBA. I'm not certain if it will run on VB.net.

link|improve this answer
feedback
up vote 0 down vote accepted

I got it.

Since the text file is in Resources, I can do this:

Richtextbox1.Text = My.Resources.Textfile

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.