View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Alex J Alex J is offline
external usenet poster
 
Posts: 85
Default HELP! - Closing form

K,
The following example was posted in the news group in March. (Try Google
Search on the newsgroup - great for getting past knowledge).

Private Sub UserForm_QueryClose(Cancel As Integer, Closemode As Integer)
If Closemode = vbFormControlMenu Then
MsgBox "Please Click The Exit Button To Close The File."
Cancel = True
End If
End Sub

Regards,
AlexJ


"Katie" wrote in message
...
I have a few forms in Excel that I do not want the user to be able to

close
without going through the questions asked on the form. As I have it

running
now, a user can click the "x" in the top right hand corner and the form

will
close. How do I disable this? thank you! I am frustrated - this is the

last
thing I need to figure out and I am sure it is so easy, but I can NOT

figure
it out! Thank you!