Quote Originally Posted by RhinoBull
Do you want to load content of a text file into textbox? ...
If you need to work with the file then read these tuttorials...
Thanks! I found all i need at "How to edit a text file without openning it":

Code:
   Open "C:\File.txt" For Input As #1
   text1.text = Input(LOF(1), 1)
   Close #1