I already have a pretty decent syntax highlighter in my Rich Edit control but I have one final problem before it is fully useful: Whenever I run the syntax coloring it records those coloring actions in the undo buffer which I do not really want. Is there any way to temporarily disable recording undo actions so that after a coloring the user can press undo and it will just undo the user's own actions and not the automated syntax highlighter?

I don't think I have the time to implement the Scintilla.NET editor just to get around this problem though. Any suggestions?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You will have to handle undo/redo yourself instead of relying on RTB, which means hooking into the keyboard events to listen for CTRL+Z, etc.

You can see how this author from codeproject did it for a similar RTB-overridden syntax highlighting editor: http://www.codeproject.com/KB/edit/SyntaxHighlighting.aspx

link|improve this answer
feedback

Well from C++ what you would do is use the IRichEditOle COM interface e.g. to get to the ITextDocument TOM interface and call Freeze and Unfreeze to prevent your changes to go into the Undo bufer. Maybe this article http://www.codeproject.com/KB/edit/richtextboxplus.aspx can be of some help in doing that.

link|improve this answer
The freeze and unfreeze methods only seem to prevent it from displaying anything on screen while you do a series of updates. I already have that covered though. – Andos Dec 27 '10 at 21:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.