Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
2k views

Android question: implementing a rich text editor?

I am wondering if there are any good options to implement a rich text editor in Android. Please note I am talking about a rich text editor that can be used in an Android application, not the one ...
8
votes
1answer
158 views

RichEdit 2.0's usage of single CR character as linebreak throws off SelStart calculations (Delphi XE2)

When transitioning from Delphi 2006 to Delphi XE2, one of the things that we learned is that RichEdit 2.0 replaces internally CRLF pairs with a single CR character. This has the unfortunate effect of ...
7
votes
3answers
1k views

Are there any good TDD tools or resources for VB6?

Yea i know i'm way behind times but what i've got here is a antique VB6 editor app which i believe that no one will be upgrading to .NET soon. It uses a couple of third party DLLs tools and as it's ...
4
votes
5answers
731 views

How to change selection color in RichEdit control?

Basically, I want to change the standard RichEdit selection color in places where it is above colored text. I'm implementing a "highlight" function in a RichEdit control (like a yellow marker). Now ...
4
votes
3answers
2k views

Unicode RTF text in RichEdit

I'm having trouble getting a RichEdit control to display unicode RTF text. My application is Unicode, so all strings are wchar_t strings. If I create the control as "RichEdit20A" I can use e.g. ...
4
votes
1answer
724 views

How to change underlining color in a Rich Edit control (Win32/C)

I’m looking for a way to make red squiggly underlining in a Rich Edit control (I’m using version 4.1 with Msftedit.dll). I’m able to produce squiggly underlining with this code : CHARFORMAT2 format; ...
3
votes
2answers
454 views

How to autoscroll to the end of RichEdit?

I never needed to use the TRichEdit before, always used TMemo. I'd like RichEdit autoscrolling to the end when I add text like TMemo. See how it looks after you add some data: As you can see, the ...
3
votes
1answer
140 views

Move TRichEdit Caretpos

is there a way to change the caret position in pixel? i would like to move the care pos everytime i move the mouse mouse. like: Onmousemove: MoveCaretPos(X, Y);
3
votes
2answers
180 views

Display of Asian characters (with Unicode): Difference in character spacing when presented in a RichEdit control compared with using ExtTextOut

This picture illustrates my predicament: All of the characters appear to be the same size, but the space between them is different when presented in a RichEdit control compared with when I use ...
3
votes
3answers
665 views

Detect click on URL in RichEdit

I am trying to update RichEdit so that it detects URL and enables clicking on it to open in the browser. Detecting URL is easy, I just use the following code from ...
2
votes
1answer
59 views

DBRichEdit RTF encoding lost transitioning application from BDE to DBX

My team is converting a BDE application to DBX using D2007. A TTable has been replaced with a TSQLDataSet/TDataSetProvider/TClientDataSet combination. A TStringField has been used to access the RTF ...
2
votes
1answer
140 views

How to count charachters in RichEdit without two charachters that every new line gives?

I have problem with counting characters in richedit (Delphi XE). For every new line as a result i get two characters more but in text they not exists. Example: Here are 15 characters, but richedit ...
2
votes
5answers
372 views

Delphi. Analog of Memo/RichEdit

Does anybody know is there Analog of Memo/RichEdit? Demand: to number lines, to load big files (more than 5 MB) from a stream. Thanks!
2
votes
1answer
91 views

Rich Edit Control: Prevent Rich Formatting?

How do you prevent the user from changing anything other than the text in a Win32 Rich Edit control? (i.e. They shouldn't be able to change the formatting of any text, add graphics, etc.; if they ...
2
votes
1answer
326 views

RichEdit not respecting PlainText with pasted content

I create a new application, drop on a TRichedit and set the PlainText property to true. I then run the application and paste some rich formatted text into the RichEdit. I would expect it to display ...
2
votes
1answer
237 views

TRichEdit and URL highlighting problems

I am using the current code to highlight URLs on a TRichEdit: procedure TForm1.WndProc(var Message: TMessage); var p: TENLink; strURL: string; begin if (Message.Msg = WM_NOTIFY) then begin ...
2
votes
4answers
937 views

How to test if a control is a RichEdit control

Most TWinControl descendant in Delphi has an override method CreateParams to define it's subclass such as: 'EDIT', 'COMBOBOX', 'BUTTON', 'RICHEDIT' and etc. CreateSubClass(Params, 'EDIT'); ...
2
votes
1answer
498 views

How to use a RichEdit control like a console with the Win32 API?

I have a RichEdit control in my simple application that I wish to simulate a console-like display with. I want to be able to have a buffer of x number of lines (say, 300) and whenever a line is ...
2
votes
1answer
556 views

Free Component which can show richtext with pictures Delphi

I need a free component like RichEdit, but which can also show pictures inside. I am using Delphi 7. Unfortunately RichEdit cannot show pictures, and few components which can are not free.
2
votes
2answers
1k views

mark all the instances of a word (Delphi, RichText)

OK, this is a problem that's been nagging and I can't see to find a definitive answer. How do you find and mark all instances of a word? What I mean is, I search for a word (say: Person). If the word ...
2
votes
1answer
1k views

Change highlight color of selected text in RichEdit

How do I change the color of selected text in a RichEdit control, while the text is being selected? SetSysColor() can do it, but that changes the Highlight-color globally. Setting a CHARFORMAT2 with ...
2
votes
3answers
257 views

How do I add rich text editing support to a web site?

I need some basic CMS functionality with rich text editing. On stack overflow there is a regular textarea edit control, with support for Markdown style syntax formatting. That would be beyond my ...
2
votes
5answers
2k views

How can I add an HyperLink in TRichEdit using Delphi

How can I add an HyperLink in a TRichEdit (using Delphi). I need to have something like: "This is my text, click here to do something."
1
vote
1answer
58 views

How do I make the text in an Edit Control and an Rich Control so I cant select it?

I have Edit Controls and Rich Edit controls in my application that are read-only. But on top of that, I want to make it so I can't select the text or even do anything with it, only display. I did not ...
1
vote
1answer
85 views

How to set a font in rich edit 4?

I want to change the font of the richedit control in my win32 program to Consolas. When i try to do the following: CHARFORMAT2 cformat; cformat.dwMask = CFM_FACE; cformat.cbSize = sizeof(cformat); ...
1
vote
2answers
226 views

How do I display a Word document in a rich-edit control?

I'm building a Delphi app and I want to read a Word document and display it in a rich edit. How can I do that?
1
vote
0answers
57 views

Rich edit control: hiding the angle-bracketed link from an RTF URL

I want to display an RTF file with some links in it; the links have the RTF encoding: {\field{\*\fldinst{HYPERLINK "http://a-link.com" }}{\fldrslt{\cf1\ul here is a link}}} In WordPad and Word, ...
1
vote
1answer
241 views

How do you change the color of specific characters in a rich edit in Delphi? [closed]

Possible Duplicate: How can I change the color of certain characters in a TRichEdit? I have to do a project in which I have to either change the color of specific individual characters in a ...
1
vote
1answer
202 views

VCL RichEdit component suggestion

I tried to implement vertical paragraph alignment feature to TRichEdit control. It is such a headache. And i also need transparent background support from RichEdit control. Can you suggest any free or ...
1
vote
1answer
226 views

Win32 RichEdit align paragraph vertically

I need to align paragraph vertically (top, center, bottom) in a RichEdit. I googled it and found nothing about this issue. Does anybody know a workaround to achive this. I use C++ Builder 2010, are ...
1
vote
2answers
211 views

How to use TScrollbar to richedit;

How to use Tscrollbar to Richedit. My purpose is to separate the scrollbar in a deferent panel. is it possible?
1
vote
2answers
236 views

RichEdit's EM_AUTOURLDETECT message recognizes link, but I can't click it

I have a RichEdit control in a dialog box. The RichEdit control displays RTF text. EM_AUTOURLDETECT causes the RichEdit control to properly format and recognize the hyperlink. When the mouse hovers ...
1
vote
1answer
212 views

Delphi component like trichview

looking for a Delphi component like trichview for simple use: - store and load test formatted with html tag - change font (name, size, style) - if possible db aware - if possible free thanks
1
vote
1answer
152 views

WPF shortcuts are activating when typing in HwndHost parented rich edit control

I am writing a WPF app that wraps up a legacy MFC richtext editor. I have wrapped the richtext editor in a HwndHost. The HwndHost control sits alongside a WPF TabControl. Screenshot of running app ...
1
vote
0answers
305 views

RTF <-> RTFD anyone? How to display RTF with embedded images (Windows) in NSTextView on a Mac and vice versa?

I have some RTF data shared between Windows and Mac. I use RichEdit control to edit this data for Windows and so if user inserts some images, I get the RTF with embedded images. Now I need to ...
1
vote
2answers
2k views

Loading RTF text from database into TRichEdit

I am currently in the process of migrating our software solution from Delphi 7 to 2010. Mostly the changes have been simple and there are only a small amount of hurdles left to go. On a form we use a ...
1
vote
0answers
167 views

Bringing back the default context menu in RichEdit when using OLE callback

I have a RichEdit control that uses an implementation of the IRichEditOleCallback interface, so that it can host images and embedded objects. Part of this interface is the GetContextMenu method. If ...
1
vote
2answers
305 views

Keeping the caret at the end of text in a rich edit

I am writing an editor in Delphi (2009) using a TRichEdit component. The editor is append-only, in the sense that the caret must be at the end at all times, while maintaining the ability to copy using ...
1
vote
3answers
343 views

how to make the richedit not to select or hightlight?

help i wnted the richedit cannot be highlighted/ disable the hightlight or selection of text? also remove the cursor pos. the application is intended for display only the rtf text and not editing so i ...
1
vote
2answers
278 views

How to disable Drag/drop TRichEdit or TRzRichEdit

How to block the drag and drop in TRichEdit? delphi code I work with Rich edit and having difficulties on blocking the drag and drop feature specially dragging text from outside the form let say ...
1
vote
2answers
259 views

RichEdit, winapi - paragraph aligment

I would like to have a line aligned in such way, that some first words are aligned left and some last words are aligned right, but all are in the same line: | text 1 text2 | ...
1
vote
1answer
244 views

RichEdit's EM_AUTOURLDETECT message not always sent

To describe this issue, the best would that you would test my application with following usecase: Application: http://ubuntuone.com/p/nF/ Open application; Click on the ">" captioned button; Click ...
1
vote
3answers
926 views

Delphi: How to use TJvRichEdit to load or save text and images (not just .bmp) to file or firebird blob field?

Regarding TJvRichEdit and Delphi... How? Load/Save rtf (including text and images - not only .bmp) to/from a file? Read/Write rtf (including text and images - not only .bmp) to/from Firebird blob ...
1
vote
2answers
876 views

How can I append text to the last line of a RichEdit control?

How can I add text not to a new line but to the last existing line? Lines.Add and Lines.Append add text as a new line, and Lines.Insert needs a position that I don't know how to find.
1
vote
0answers
542 views

RichEdit / RichTextBox scollbar length, grab handle width, enabled/disabled, etc… How is all this controlled?

I have another question open regarding an error I'm experiencing with the horizontal scrollbar of a RichTextBox not functioning properly and am not getting much response. It came to me that I might ...
1
vote
9answers
1k views

Iterate Over Struct; Easily Display Struct Fields And Values In a RichEdit Box

Is there an easier way to display the struct fields and their corresponding values in RichEdit control? This is what I am doing now: AnsiString s; s = IntToStr(wfc.fontColor); ...
1
vote
3answers
289 views

Make child window transparent to user input

Is there a way to make input "pass through" a child window and reach its parent? My problem is this: I'm making custom control with a label that can be formatted. So, rather than trying to re-invent ...
1
vote
2answers
816 views

Sharepoint Rich Content Editor munging HTML added from custom toolbar button

Summary: What I'm trying to ask - are we going about this the completely wrong way, or, is there a way to stop Sharepoint, or its rich editor, from munging the HTML which gets added? I've been ...
1
vote
2answers
2k views

Scrolling issues with TRichEdit in Delphi

I am adding lines to a TRichEdit how do I keep focus on the line that has just been added? For Idx := 1 to 1000 do RichEdit.Lines.add(IntToStr(Idx)); EDIT I just what the bottom line of the ...
1
vote
1answer
608 views

Chinese Symbols When Loading Text

I am loading text from text file to richedit but it displays weird Chinese symbols instead, what am I doing wrong? ms := TMemoryStream.Create; ms.LoadFromFile('C:\aw.txt'); ms.Seek(0, soFromEnd); ...

1 2