View Single Post
  #3  
Old March 17th 06, 10:45 AM posted to microsoft.public.outlook.program_vba
Klaus
external usenet poster
 
Posts: 7
Default Extract several lines of email messages starting from the end

You can also use this :

Private Function GetLines(ByVal text As String) As String()
Dim tb As New System.Windows.Forms.TextBox
tb.Multiline = True
tb.Text = text
Return tb.Lines
End Function

(Why do all the work by hand?)

Klaus

Ads