Jul 2, 2001 #1 Zebadiah Technical User Joined Apr 29, 2001 Messages 22 Location US I'd like to reassign the button on the upper right corner of the window (the X) from just closing the form, to closing the entire excel file. Any ideas?
I'd like to reassign the button on the upper right corner of the window (the X) from just closing the form, to closing the entire excel file. Any ideas?
Jul 2, 2001 #2 segmentationfault Programmer Joined Jun 21, 2001 Messages 160 Location US Have you tried specifying the Terminate event? Private Sub UserForm_Terminate() MsgBox "See you later." End Sub Upvote 0 Downvote
Have you tried specifying the Terminate event? Private Sub UserForm_Terminate() MsgBox "See you later." End Sub