Hi all,

Sometime ago I asked here how to present a text file that I read on a form. I got an answer that suggested me simply to use a text box control.
Problem is that I read that file in a loop. something like:
While (NOT EOF)

read....
Textbox1.text = read_str

Wend

now each line erase the other and I can not display the whole file.

How to avoid it?
Should I use a different control? which one?

Thanks.