Yes No command in msgbox

seanog2001

Registered User.
Local time
Today, 04:01
Joined
Jun 26, 2006
Messages
67
how do i code the yes no command sin a msg box

i want to code if its yes then

*************

if its no then
*************

how do i go about doing this
 
Are you refering to an option button or check box on a form?

If so, the syntax for both would be similar... something like the following:

If me.optionname.value = 1 Then 'Option button is ticked -- True
'Do these things
Else 'Option button is not ticked -- False
'Do these things
End If
 
Jibbadiah said:
Are you refering to an option button or check box on a form?

If so, the syntax for both would be similar... something like the following:

If me.optionname.value = 1 Then 'Option button is ticked -- True
'Do these things
Else 'Option button is not ticked -- False
'Do these things
End If


CHEERS MATE!
 

Users who are viewing this thread

Back
Top Bottom