Word Automation: Write RTF text without going through clipboard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:39:01Z http://stackoverflow.com/feeds/question/22326 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/22326/word-automation-write-rtf-text-without-going-through-clipboard 6 Word Automation: Write RTF text without going through clipboard Vincent 2008-08-22T13:24:24Z 2009-01-17T03:23:49Z <p>I am trying to <strong>replace the current selection in Word (2003/2007)</strong> by some <strong>RTF string</strong> stored in a variable.</p> <p>Here is the current code:</p> <pre><code>Clipboard.SetText(strRTFString, TextDataFormat.Rtf) oWord.ActiveDocument.ActiveWindow.Selection.PasteAndFormat(0) </code></pre> <p>Is there any way to do the same thing without going through the clipboard. Or is there any way to push the clipboard data to a safe place and restore it after?</p> http://stackoverflow.com/questions/22326/word-automation-write-rtf-text-without-going-through-clipboard/22335#22335 -3 Answer by samjudson for Word Automation: Write RTF text without going through clipboard samjudson 2008-08-22T13:26:46Z 2008-08-22T16:17:00Z <p>You can use a RichTextbox to convert RTF to text or vice versa.</p> <pre><code>RichTextBox r = new RichTextBox(); r.Rtf = strRTFString; Console.WriteLine(r.Text); </code></pre> http://stackoverflow.com/questions/22326/word-automation-write-rtf-text-without-going-through-clipboard/27425#27425 7 Answer by Joel Spolsky for Word Automation: Write RTF text without going through clipboard Joel Spolsky 2008-08-26T04:54:01Z 2008-08-26T04:54:01Z <p>Put the RTF in a file instead of the clipboard, then insert from the file, e.g.</p> <blockquote> <p><code>Selection.InsertFile FileName:="myfile.rtf", Range :="", _ ConfirmConversions:=False, Link:=False, Attachment:=False</code></p> </blockquote>