Tagged Questions
6
votes
5answers
699 views
how to implement undo/redo operation without major changes in program
Hi
I'm about to add new functionality to application which I'm currently writting. I need to write a undo/redo fnctionality. However 90% of our application is ready and I don't know what is the best ...
4
votes
2answers
172 views
C#: Unable to undo inserted text
I am programatically adding text in a custom RichTextBox using a KeyPress event:
SelectedText = e.KeyChar.ToString();
The problem is that inserting text in such a way doesn't trigger the CanUndo ...
2
votes
4answers
122 views
Can't get my head around implementing an Undo/Redo functionality, should I use a Stack?
I'm getting kind of confused right now, having one of those days I guess.
I need to implement an Undo and Redo functionality for a form. For simplicities sake, let's say that I only save the control ...
1
vote
1answer
64 views
How to get RichTextBox Undo to work better?
I am trying to write a text editor using RichTextBox. My concern is now about Undo and possibly Redo features of RichTextBox.
When I start writing in text box, say 1 minute! if I call Undo method, ...