Tagged Questions

23
votes
5answers
9k views

how do I do redo (i.e. “undo undo”) in vim

In vim, I did too much undo. How do I undo this (i.e. redo)?
8
votes
8answers
1k views

How to design undo & redo in text editor?

Part of my project is write text editor that used for type some rule and my application compile and run it. Writing compiler was end and release beta version. In final version we must add undo and ...
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
170 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 ...
3
votes
2answers
402 views

How do I restore a NSUndoManager's contents in a CoreData NSManagedObjectContext?

I'd like to use NSUndoManager in an iPhone application on CoreData (NSManagedObject) objects such that I can save (and later restore) the state of the NSUndoManager if the application exits ...
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 ...
2
votes
1answer
838 views

Undo/redo with a UITextView (iOS/iPHone)

I have a view where a UITextView always has focus. What I want to do is extend the built-in undo/redo behavior to support undo/redo for when I programmatically set the text (e.g., for when I clear it, ...
1
vote
2answers
60 views

Implementing Undo and Redo functionality javascript and php

I want to implement Undo and Redo functionality not only for client side but for server side as well. For insatnce i have a div containing image and i can rotate resize and rewrite it , All the basic ...
1
vote
1answer
63 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, ...
1
vote
2answers
98 views

Undo Redo with Entity Framework

I'm converting a .net program's db access from old school sql to EntityFramework currently it has an 'undo redo' feature by holding the sql scripts in a container for later use. Is there an easy way ...
1
vote
2answers
182 views

Drawing Layers over ImageView in Android

Can anyone guide me how can I put different drawing layers on an Image which is shown over ImageView component. Basically I want to implement Undo and Redo Functionality in my drawing application. ...
1
vote
2answers
468 views

Undo and Redo Action events in Java

I have an application with a JPanel and buttons that users click on to draw shapes on the panel. You can color and resize the shapes as well as move them around in the panel. How would I go about ...
0
votes
0answers
10 views

how to undo an receive&send scope activity

I am experiencing WF4, but met some difficulties. I have some corralated receive&send scopes to audit some files. And I have a CorrelationHandle between each send and next receive activity. What I ...
0
votes
0answers
34 views

NSUndoManager not keeping the stack with redo/undo for an iPhone app for UnDo/Redo drawings

I am building an iPhone app with Objective C. In my app, I am drawing the strokes on image and want to implement the undo and redo functionalities. I have used NSUndoManager for this. With this I am ...
0
votes
0answers
78 views

How to reuse undo/redo information from RichEdit, if different texts are loaded into the control

Suppose we have the following commands in our program: select element load its text into a RichEdit control user makes massive changes in the text in the control select another element load its text ...
0
votes
0answers
421 views

Undo and redo in Canvas for Android

I am using a customized version of FingerPaint for Android with some other features, like inserting images and moving them. I decided to implement an Undo&Redo, since it will make life just ...
0
votes
1answer
336 views

What is the use of undo manager? How to use it?

What is the need of undo manager in iphone? I never see such buttons in sample programs. I know the meaning and the use of undo & redo. But my question here is, For which purpose, i need it? How ...
0
votes
2answers
124 views

NSUndoManager won't undo editing of a NSMutableDictionary

I'm experiencing problems with the undo operation. The following code won't undo an removeObjectForKey: operation but the redo operation setObject:ForKey: works. - (void) ...