Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Dim allLines() As String = RichTextBox1.Lines
  2. For lineCounter = 0 To allLines.GetUpperBound(0)
  3.     MessageBox.Show(allLines(lineCounter))
  4. Next