dtv8997 Posted September 15, 2009 Posted September 15, 2009 Can anyone tell me if it is possible to combine a series of "command" functions within a LISP routine, such that the whole sequence can be undone at once using the UNDO command, rather than having to undo repeatedly until each and every command within the LISP routine has been undone. Quote
Lee Mac Posted September 15, 2009 Posted September 15, 2009 Two ways: (command "_.undo" "_begin") <code> (command" "_.undo" "_end") Or with VL: (setq doc (vla-get-ActiveDocument (vlax-get-acad-object))) (vla-startUndoMark doc) <code> (vla-EndUndoMark doc) Lee Quote
dtv8997 Posted September 15, 2009 Author Posted September 15, 2009 wow thats easy, thanks a lot! Quote
Lee Mac Posted September 15, 2009 Posted September 15, 2009 wow thats easy, thanks a lot! Not a problem buddy Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.