procedure pops message before colse userform based on press commandbutton

Maklil

Board Regular
Joined
Jun 23, 2022
Messages
146
Office Version
  1. 2019
Platform
  1. Windows
Hi

I need procedure to show messagebox "the form can't close before press commandbutton1"

this means if I try to close userform before I press commandbutton1 ,then prevent me to close userform ,if I press commandbutton1 then will show another messagebox"are you're sure , the form will close" if I press ok then will close if I press no then will keep the form is open .

thanks
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
The below UserForm_QueryClose code will restrict using the x (close) button on the userform. The CommadnButton1_Click will allow for the closure of the userform after a confirmation.

VBA Code:
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
    If CloseMode = vbFormControlMenu Then
        Cancel = True
        MsgBox "the form can't close before press commandbutton1", vbInformation + vbOKOnly
    End If
End Sub

Private Sub CommandButton1_Click()
    Dim ans As Integer
    ans = MsgBox("are you sure, the form will close", vbInformation + vbYesNo)
    If ans = vbNo Then Exit Sub
    If ans = vbYes Then Unload Me
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,136
Messages
6,123,247
Members
449,093
Latest member
Vincent Khandagale

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