here's how. on load it reads your text file into a string array, then displays the lines 1 by 1 as you click the button:

vb Code:
  1. Public Class Form1
  2.  
  3.     Dim lines() As String
  4.     Dim index As Integer = 0
  5.  
  6.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  7.         lines = IO.File.ReadAllLines("filename.txt")
  8.     End Sub
  9.  
  10.     Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
  11.         TextBox1.Text &= lines(index) & Environment.NewLine
  12.         index += 1
  13.         If index > lines.GetUpperBound(0) Then button1.Enabled = False
  14.     End Sub
  15.  
  16. End Class