This is a follow-up on my previous posting on how to start a MS macro from VBA. Now I need to stop a MS macro from VBA. I know how to stop a macro from the keyboard by typing {shift} {escape} but when I try to do this from VBA it is not working. Here is the VBA sequence I'm using:
Sub testexitMS()
Application.SendKeys ("+{ESC}")
End Sub