Mike,
(dredging out the VB3 memories, but here goes...)
Avoid using the Input Statement if you can - it does lots
of "useful", if sometimes strange, things on your behalf.
Try the Line Input Statement if you want to read the file
line-by-line or, as in this case, grab the whole lot in one go,
using
Text1.Text = Input$( LOF( iFile ), #iFile )
HTH,
Phill W.
. . .
Quote:
> I am having a tough time getting my textbox to display multiple
> lines of text. I have set the TextBox property multiline to true
> but all I get with the following code is the first line from my text
> file.