How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T18:32:11Z http://stackoverflow.com/feeds/question/991150 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/991150/how-do-i-fill-a-textbox-with-text-from-a-textfile-in-visual-basic-2008-express-ed 0 How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition? Geoffrey van Wyk 2009-06-13T17:49:31Z 2009-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#991204 0 Answer by A. Scagnelli for How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition? A. Scagnelli 2009-06-13T18:15:38Z 2009-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#991476 0 Answer by Geoffrey van Wyk for How do I fill a textbox with text from a textfile in Visual Basic 2008 Express Edition? Geoffrey van Wyk 2009-06-13T20:41:21Z 2009-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>