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

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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
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,214,950
Messages
6,122,428
Members
449,083
Latest member
Ava19

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
Back
Top