vote up 0 vote down star

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.

flag

69% accept rate
Is this VB6 or VB.NET? – James Atkinson Jun 13 at 17:55
It's Visual Basic.NET. – Geoffrey van Wyk Jun 13 at 18:23

2 Answers

vote up 0 vote down

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|flag
vote up 0 vote down check

I got it.

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

Richtextbox1.Text = My.Resources.Textfile

link|flag

Your Answer

Get an OpenID
or

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