Message Box Result please

hullstorage

Registered User.
Local time
Today, 05:42
Joined
Jul 18, 2007
Messages
213
Hi all

I have a form that has a control that is deaulted as "no"

i want my button next to the control to open a message box
that will ask me are you sure you want to mark as invoice

if user is yes then the field will change to YES

is user no then the field will remain the same

thanks in advance
 
Something like:

If MsgBox("Do something Question?", vbYesNo + vbQuestion) = vbYes Then
Do something
End If
 

Users who are viewing this thread

Back
Top Bottom