Choice confirmation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!
I'm trying to confirm the users choice when he/she clicks on a particular
command button in my form. I would like to pose the question "Are you sure?"
with perhaps a couple more command buttons "yes" and "no". Is there an easy
way to do this? Please help!
 
Private Sub Command0_Click()

If MsgBox("Are you sure?", vbYesNo Or vbQuestion) = vbYes Then
'do something
Else
'do something else
End If

End Sub

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.
 
Brendan ... you're a genius! Thanks!
-Howard

PS How or where do I investigate where such methods (or whatever) exist
without wasting the vauable time of people such as yourself?

Brendan Reynolds said:
Private Sub Command0_Click()

If MsgBox("Are you sure?", vbYesNo Or vbQuestion) = vbYes Then
'do something
Else
'do something else
End If

End Sub

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.
 
Well, I'm a book person, so my recommendation would be your nearest large
bookstore or www.amazon.com. I can't recommend a specific book, as I haven't
read any beginner-level Access books for some years now.
--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.


Howard said:
Brendan ... you're a genius! Thanks!
-Howard

PS How or where do I investigate where such methods (or whatever) exist
without wasting the vauable time of people such as yourself?
 
Back
Top