rtf Questions
6
Solved
I know how to copy plain text to the clipboard:
oascript -e 'set the clipboard to "plain text"'
But the question is how can I copy html contents to the clipboard?
For example, how can I copy the...
Moderation asked 18/6, 2012 at 15:6
2
Solved
Apparently, the RichTextBox provided by Microsoft doesn't fully support the RTF specs. For some reason, it won't permit multi-lined rows, and destroys formatting instead.
Forexample, here is the R...
Corenda asked 18/12, 2009 at 15:25
5
Solved
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 the .RTF pro...
Impasse asked 29/9, 2009 at 5:38
4
Solved
I've managed to do the reverse using WebBrowser and RichTextBox.
But how would I convert RTF to HTML?
5
Solved
Any recommendations to convert an RTF to a PDF? I need to do this from my LAMP application, so a command line utility like GhostScript would be ideal.
Engadine asked 28/7, 2011 at 22:8
10
Solved
Ideally, I'd like a module or library that doesn't require superuser access to install; I have limited privileges in my working environment.
6
Solved
Is there a free third-party or .NET class that will convert HTML to RTF (for use in a rich-text enabled Windows Forms control)?
The "free" requirement comes from the fact that I'm only worki...
2
I think I've found a bug in Windows or .NET and am looking for a workaround.
To reproduce the problem, first enable the Windows feature "Beta: Use Unicode UTF-8 for worldwide language support".
...
Redden asked 30/5, 2019 at 17:15
3
Solved
I have rtf documents that include an embedded object (an image). I need to extract this as an Image object (or any other usable format). I have checked out this CodeProject article but the default ...
2
Solved
Question :
I need to read an RTF File that contains an OLE Object as innerdocument.
RTF File = [ Ole object (word document) is embedded into it.]
Sample RTF File that contains word as OLE Embed...
4
Solved
Theres another post at HTML to RTF Converter for .NET, but are there any open source converters or tutorials? I don't want to use Sautinsoft. I think there is a solution at ExpertsExchange, b...
3
I've been playing with a script that takes the selected text in Chrome and looks it up in Google, offering the four top choices, and then pasting the relevant link. It is pasted in different format...
4
Solved
If I copy/paste text from Chrome for Android into my EditText view it gets messed up, apparently due to rich text formatting.
Is there a way to tell the EditText view to ignore rich text formattin...
Quantum asked 15/7, 2014 at 12:52
4
Solved
How do you convert an RTF string to plain text in Java? The obvious answer is to use Swing's RTFEditorKit, and that seems to be the common answer around the Internet. However the write method that ...
1
Solved
I'm displaying RTF document in RichTextBox ("upgraded" to RichEdit50W). Keywords in the document are linked to a webpage using a syntax:
{\field{\*\fldinst{HYPERLINK ""https://www.example.com/"" }...
Toner asked 17/5, 2018 at 11:17
1
Solved
I'm using a RichTextBox to display an RTF file, which includes a single hyperlink. The link text is not a URL (the target is a valid URL). The RTF was created with Word. Both Word and WordPad prope...
Commons asked 29/10, 2009 at 22:39
3
Solved
I have on my database a column that holds text in RTF format.
How can I get only the plain text of it, using C#?
Thanks :D
2
Does anyone know of a linter for RTF files?
I am writing an simple RTF export tool for a word processor. I've got to the stage where my generated files now load into OpenOffice and seem to work --...
Hutch asked 29/5, 2011 at 23:5
2
Solved
I tried to install PyRTF from PyPi but this doesn't work.
The package itself can be found:
$ pip3 search PyRTF
PyRTF (0.45) - PyRTF - Rich Text Format Document Generation
But installing it fail...
Halford asked 1/7, 2016 at 0:38
4
Solved
I'm trying to specify the licence for my wix setup project.
I have created a rtf with a few dummy lines in wordpad/notepad/vs tried a few different ways as I read there was an issue with ones crea...
Uela asked 17/6, 2011 at 2:15
2
Solved
I have a requirement to convert plain text to and from RTF (RichText Format) using javascript.
I am looking for a function for each conversion, and I am not looking to use a library.
Conversion f...
Zito asked 28/4, 2015 at 14:57
4
Solved
Could anyone please help me to create RTF from string in C#?
I save all the formats (bold, italic, etc) in a customized class.
Jerry
1
Solved
I'm using code from How to add clickable links to custom Inno Setup WelcomeLabel?:
procedure InitializeWizard;
var
RichViewer: TRichEditViewer;
begin
RichViewer := TRichEditViewer.Create(WizardF...
Staciastacie asked 15/2, 2017 at 13:40
1
I have the following code to convert rtf text to html:
private string RtfToHtml(string rtf)
{
IRtfDocument rtfDocument = RtfInterpreterTool.BuildDoc(rtf);
RtfHtmlConverter htmlConverter = new Rt...
1
I am trying to convert a text from markdown to rendered RTF in a shell script and wrap the command in an Apple Automator Service.
I realized that the only way to achieve the task is by doing:
pyt...
© 2022 - 2024 — McMap. All rights reserved.