0

The VB6 IDE has a very basic undo and redo mechanism, stated here

I want it to undo changes like if I move a button to some plave and press Ctrl+Z it should move back to its previous position.

Can anyone guide me to a VB6 addin that does this?

TAbdiukov
  • 1,185
  • 3
  • 12
  • 25
PUG
  • 4,301
  • 13
  • 73
  • 115
  • The link you provided is about the VBA editor in Office 2000, not the VB6 IDE. But it's true enough, the VB6 IDE can't undo some mouse operations in the form design window. – MarkJ Aug 05 '10 at 12:17

1 Answers1

0

There is no such add-in as far as I know. The best solution is to use a version control system like subversion, so that you can track your changes and undo them at any future time if you wish.

I think I advised you to use version control in a comment on your other question where you said you'd inherited a huge VB6 application?

Community
  • 1
  • 1
MarkJ
  • 30,070
  • 5
  • 68
  • 111
  • for some reason i cant spot any subversion in my question you refered. – PUG Aug 05 '10 at 16:52
  • I didn't mention *subversion* but I did say [I hope you are using version control](http://stackoverflow.com/questions/3396417/changes-to-a-dialog-wont-appear-when-i-run-it-in-visual-basic-using-vb-editor-6-0/3396456#3396456) – MarkJ Aug 05 '10 at 17:03