I'm assuming by the title you meant "Load string into text box from text file..."
This is pretty simple, you want this in a textbox, but I see multiple lines here, so i'm assuming multiline is set to true.
Note:
Code:using System.IO;Or... just:Code:textBox1.Text = File.ReadAllText("FilePathGoesHere");
Code:textBox1.Text = System.IO.File.ReadAllText("FilePathGoesHere");




< Please
if this helped you out. Any kind of thanks is gladly appreciated > 
Reply With Quote