11-13-2010, 03:26 PM
(11-13-2010, 03:22 PM)the_GENie Wrote:Code:Dim reader As System.IO.StreamReader
Dim filename As String = "exp-easy.txt"
reader = System.IO.File.OpenText(filename)
textbox1.Text = reader.ReadToEnd
reader.Close()
Here, this will get you started. This will open a textfile named exp-easy.txt and load it into a textbox. Adapt it to suit your needs.
Thanks but where is the exp-easy.txt saved?