About 797,000 results
Open links in new tab
  1. Programmatically adding Images to RTF Document - Stack Overflow

    Apr 15, 2017 · I am trying to add a image to a RTF document which I am creating. I would prefer to not use 'copy/paste' methods (that involve pasting the image within a RichTextBox and then accessing …

  2. Using Tables in RTF - Stack Overflow

    4 Editing directly in RTF becomes quickly unreadable. Pehaps this practical approach works better: - Create an example mock-up ( in Excel or Word ) using unique identifiers as placeholders ( example " …

  3. Regular Expression for extracting text from an RTF string

    ) TEXT FROM EXAMPLE WHERE CONTENT LIKE '{\rtf%'; This is designed for data from Windows rich text controls, not RTF files. Limitations are: \{ and \} are not replaced with { and } Headers and …

  4. How to append \\line into RTF using RichTextBox control

    Sep 16, 2014 · richtextbox.AppendText(System.Environment.NewLine); // appends \r\n However, if you now view the generated rtf the \r\n characters are converted to \par not \line How do I insert a \line …

  5. Converting .rtf to .txt with Python 3 - Stack Overflow

    Dec 7, 2017 · 10 I have several hundred .rtf files that need to be converted to .txt. I have tried reading and writing the contents of the files into a new text file, but this seems rather tedious. Is there an …

  6. Converting RTF to PDF using python? - Stack Overflow

    Dec 18, 2023 · I need to convert RTF to PDF using Python. If the RTF file include any image. my VM doesn't have Word Application. I tried from reportlab.pdfgen import canvas import …

  7. What is the RTF syntax for a hyperlink? - Stack Overflow

    May 17, 2010 · RTF field syntax is covered in the specification, and using the HYPERLINK instruction will give you a link. This question shows a usage of the HYPERLINK instruction.

  8. Set RTF text into WPF RichTextBox control - Stack Overflow

    Sep 2, 2009 · Set RTF text into WPF RichTextBox control Asked 16 years, 4 months ago Modified 4 years, 11 months ago Viewed 61k times

  9. How can I insert an image into a RichTextBox? - Stack Overflow

    You can paste (Ctrl+V) an image into a RichTextBox - Funny thing though; When I save the RichTextBox RTF property to a file while the image is already pasted into the RichTextBox, it seems …

  10. winforms - How to Load RTF file to RichTextBox without loosing …

    Sep 12, 2014 · Dim SR As StreamReader SR = File.OpenText(App_Path & "/Artikel/Profile/Info Num1.rtf") RichTextBox1.Rtf = SR.ReadToEnd SR.Close() the content is displayed and text format is …