How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T18:32:11Zhttp://stackoverflow.com/feeds/question/991150http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/991150/how-do-i-fill-a-textbox-with-text-from-a-textfile-in-visual-basic-2008-express-ed0How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition?Geoffrey van Wyk2009-06-13T17:49:31Z2009-06-13T20:41:21Z
<p>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.</p>
<p>Any help will be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/991150/how-do-i-fill-a-textbox-with-text-from-a-textfile-in-visual-basic-2008-express-ed/991204#9912040Answer by A. Scagnelli for How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition?A. Scagnelli2009-06-13T18:15:38Z2009-06-13T18:15:38Z<p>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.</p>
<p>If you're excessively lazy (after all, it is a Saturday), check out this link: <a href="http://www.freevbcode.com/ShowCode.Asp?ID=466" rel="nofollow">http://www.freevbcode.com/ShowCode.Asp?ID=466</a>. 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.</p>
http://stackoverflow.com/questions/991150/how-do-i-fill-a-textbox-with-text-from-a-textfile-in-visual-basic-2008-express-ed/991476#9914760Answer by Geoffrey van Wyk for How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition?Geoffrey van Wyk2009-06-13T20:41:21Z2009-06-13T20:41:21Z<p>I got it.</p>
<p>Since the text file is in Resources, I can do this:</p>
<p>Richtextbox1.Text = My.Resources.Textfile</p>