if you get annoyed at the line numbering in the vbcode boxes when copying to paste elsewhere

vb Code:
  1. Sub Main()
  2. Dim myarr() As String
  3. myarr = Split(Clipboard.GetText, vbNewLine)
  4. For i = UBound(myarr) To 0 Step -1
  5.     If IsNumeric(myarr(i)) Then myarr(i) = ""
  6. Next
  7. Clipboard.Clear
  8. Clipboard.SetText Replace(Join(myarr, vbNewLine), vbLf & vbCr, "")
  9. End Sub
make a project with the above code (no form needed) and compile
copy from the post
run program (nothing visible happens)
paste into whatever code window