Thread
:
Userform close button
View Single Post
#
3
Posted to microsoft.public.excel.misc
jhyatt
external usenet poster
Posts: 61
Userform close button
try this
Private Sub Userform_QueryClose(Cancel As Integer, closeMode As Integer)
If closeMode = 0 Then
Cancel = True
MsgBox "Please use the button!"
End If
End Sub
Reply With Quote
jhyatt
View Public Profile
Find all posts by jhyatt