rtf Questions
1
I have a rtf file which has some text with bullets as shown in the screenshot below
I want to extract the data along with the bullets but when I print in the console, I get junk values. How do I...
10
Solved
I'm trying to "reset" the formatting in my RichTextBox (WinForms, not WPF). I was previously using
richTextBox.Text = richTextBox.Text;
However, that seems to have suddenly failed me. Now no ma...
Irisirisa asked 12/8, 2009 at 18:49
4
Solved
I'm trying to output unicode string into RTF format. (using c# and winforms)
From wikipedia:
If a Unicode escape is required, the control word \u is used, followed by a 16-bit signed decimal in...
4
Solved
4
Solved
I'm currently trying to get a RichTextBox with basic formatting working for my new beta notes software, Lilly Notes. Brian Lagunas' article on the subject put me in the right direction, however I'm...
Bathtub asked 9/8, 2014 at 10:23
2
Solved
I want to add a horizontal line to the RichTextBox as a delimiter of my text.
I've found some examples of RTF code implementing a line and tried them in that way:
rtbResFile.Rtf = @"{\rtf1{\pard s...
Speedwell asked 30/11, 2011 at 10:58
2
I want to show a RTF document in a view. This document will be developed in Microsoft Word and will contains images.
What is the best way to do this using standard routines provided?
I would real...
1
Solved
I add document of Richtextbox to database. Document have several hyperlink. Every hyperlink added to this richtextbox by programmatically as follows:
RichTextBox.IsDocumentEnabled = true;
RichTe...
Eliaseliason asked 6/12, 2015 at 22:0
7
Solved
I have an RTF file that I want to display inside a web page after tags have been replaced with user input.
I would like to be able to display the RTF file without having to convert it to somethin...
1
I've implemented a parser in Java to store the lists as object. But the content of the lists and the heirarchy information are stored in two different blocks. I was trying to find out how does the ...
2
Solved
I have a String:
String stringContent="{\\*\\listtable{\\list{\\listlevel{\\leveltext}{\\levelNumber}}}}"
How do I select values of all enclosing braces one by one in each pass like this:
"{\\l...
1
Solved
I try to convert a plain text in RTF-Format. Therefore, I use RichTextBox (WinForms).
The concerned method the RTF-Markup as string.
Now, I want to insert line spacing in the markup. I found that ...
8
Solved
We have a crystal report that we need to send out as an e-mail, but the HTML generated from the crystal report is pretty much just plain ugly and causes issues with some e-mail clients. I wan...
5
Solved
I have two bits of code. First a standard copy paste from cell A to cell B
Sheets(sheet_).Cells(x, 1).Copy Destination:=Sheets("Output").Cells(startrow, 2)
I can do almost the same using
Sheet...
1
Solved
What ways are there to convert an RTF to PDF that contains a table in the document in Windows or Unix using Java?
The option we have tried here are:
ITEXT - But the table inside the rtf documen...
3
I would like to convert 100+ RTF files to Wiki Markup, but I can only find "Wiki to RTF" converters on the web and even here on StackOverflow.
I only need RTF --> Wiki Markup
Is there anything li...
2
Solved
I need to create a table in an RTF file. However I am not familiar with RΤF. Here is an example of a text file that these RTF files are supposed to replace:
GENERAL JOURNAL
Page 1
Date Descript...
Churrigueresque asked 1/12, 2011 at 23:25
3
Solved
I would like to perform the following task: converting a TRichEdit content (an rtf text) into a not-plain-text e-mail message body.
MAPI doesn't support rtf, but is there a way to do it maybe with...
2
Solved
In a .NET project I have a long plain text build as concatenation of several strings
StringLongText = text1 + text2 + ... + textN
each string "textX" is the result of an evaluation.
At the end ...
Kassie asked 7/11, 2012 at 8:29
2
Solved
What is the most efficient way to convert an RTF string to a XAML string in C#? I'd like to use System.Windows.Documents.XamlRtfConverter.ConvertRtfToXaml(string rtfContent) but unfortunately that ...
0
When reading some RichTextControl properties inside Application.Idle some IME won't work.
Given this simple code:
_richTextControl = new RichTextControl();
Application.Idle += delegate(object se...
4
Solved
I need to use a TRichEdit at runtime to perform the rtf to text conversion as discussed here. I succeded in doing this but I had to set a dummy form as parent if not I cannot populate the TRichedit...
3
Solved
I have a need to routinely programmatically convert *.rtf files into *.docx. Manually, this works just fine with Save As inside Word 2007 ... the resulting docx behaves just fine. Programmatically,...
Overheat asked 4/2, 2011 at 21:49
2
When I use the RichTextBox.Select(int start, int length) function to select text in a rich text box that contains hyperlinks, there is some shift in the selection when I try to select any text that...
Postaxial asked 23/10, 2012 at 21:57
6
I need to create and copy to the clipboard some RichText with standard "formatting" like bold/italics, indents and the like. The way I'm doing it now seems kind of inelegant... I'm creating a RichT...
© 2022 - 2024 — McMap. All rights reserved.