''' <summary> ''' Converts an RTF formatted string into plain text ''' </summary> Public Shared Function RtfToText(ByVal rtf As String) As String '-- Establish Locals Using rtfCtrl As New System.Windows.Forms.RichTextBox() Dim r As String = "" '-- Set the text rtfCtrl.Rtf = rtf '-- Get the rtf code r = rtfCtrl.Text '-- Return the results Return r End Using End Function