CommandButton_Click event to stop code and open VBE

shanep

New Member
Joined
Mar 18, 2009
Messages
32
Hi

I'm wondering if it's possible to put some code into a CommandButton_Click event that will pause (or stop) the presently running code and open the VBE?

Cheers
Shane
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Colin Legg

MrExcel MVP
Joined
Feb 28, 2008
Messages
3,497
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi,

Yes, the Stop keyword will work provided the VBA project isn't password protected.

Rich (BB code):
Private Sub CommandButton1_Click()
 
    'do some stuff    
 
    Stop    'code execution will pause here
 
    'do some stuff    
 
End Sub
Another way would be to conditionally pause execution using Debug.Assert:
Rich (BB code):
Private Sub CommandButton1_Click()
 
    'do some stuff    
 
     Debug.Assert False    'code execution will pause here
 
    'do some stuff    
 
End Sub

Hope that helps...
 
Last edited:
Upvote 0

Colin Legg

MrExcel MVP
Joined
Feb 28, 2008
Messages
3,497
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
You're welcome. :)

quick Q - does ThisWorkBook.Close call the WorkBook.BeforeClose event?
Quick A: yes, provided that Application.EnableEvents is set to true.


Long A: BUT! If that event is raised from your code (ie. ThisWorkBook.Close) rather than the user closing the workbook from the main Excel interface, you will not be able to call workbook object methods (eg. ThisWorkbook.Save) from within the event handler. What do you intend to use it for, you may need to be careful?
 
Upvote 0

Forum statistics

Threads
1,191,095
Messages
5,984,637
Members
439,898
Latest member
Zack0611

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Top