CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Undo option

  1. #1
    Join Date
    Apr 2001
    Posts
    95

    Undo option

    Hello....

    Does anyone have any ideas on how to implement an undo option in my program. A revert is simple enough but this is the first time I have ever wanted to use undo to reverse changes made to a file.

    Much thanks.


  2. #2
    Join Date
    Jul 2000
    Location
    Hawaii
    Posts
    281

    Re: Undo option

    undo options usually apply to an operation before a save typically by creating multiple objects of what it is you have there

    frequently these undo's are cleared after a file save

    so in your case it sounds reasonable to just make a backup file on load that can be restored programatically in an event


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured