I'll stick my neck out and say you need a rich text box if it is to display a text file.

To load the textfile into the rich text box on demand:

VB Code:
  1. Private Sub Command1_Click()
  2.   Me.RichTextBox1.LoadFile ("c:\tmp\test.txt")
  3. End Sub