aedwall Active Member Licensed User Longtime User Apr 29, 2019 #1 When in debug mode and I set a breakpoint, how do I go back a few lines and restart running code from that point? Many times I want to "redo" a set of code. Other IDE's can do this. Have I missed something? Thank you.
When in debug mode and I set a breakpoint, how do I go back a few lines and restart running code from that point? Many times I want to "redo" a set of code. Other IDE's can do this. Have I missed something? Thank you.
Marcus Araujo Member Licensed User Longtime User Apr 29, 2019 #2 If the code is running inside a Sub, just change it and press Control-S. That'll make the current Sub to restart. Otherwise I think it's not possible. Upvote 0
If the code is running inside a Sub, just change it and press Control-S. That'll make the current Sub to restart. Otherwise I think it's not possible.
aedwall Active Member Licensed User Longtime User Apr 29, 2019 #3 Marcus Araujo said: If the code is running inside a Sub, just change it and press Control-S. That'll make the current Sub to restart. Otherwise I think it's not possible. Click to expand... CTRL-S is the File - Save command, so I don't think that's correct. Upvote 0
Marcus Araujo said: If the code is running inside a Sub, just change it and press Control-S. That'll make the current Sub to restart. Otherwise I think it's not possible. Click to expand... CTRL-S is the File - Save command, so I don't think that's correct.
Marcus Araujo Member Licensed User Longtime User Apr 29, 2019 #4 aedwall said: CTRL-S is the File - Save command, so I don't think that's correct. Click to expand... When you save, the debugger sends the new code to be executed. Upvote 0
aedwall said: CTRL-S is the File - Save command, so I don't think that's correct. Click to expand... When you save, the debugger sends the new code to be executed.