D
Dave
Access 2003
Dim NAAprenda As Integer
NAAprenda = MsgBox("Is this Student Required to provide the APRENDA?",
vbYesNo)
If NAAprenda = True Then
Me!stuAprenda = True
Else
Me!stuAprendaNA = True
End If
stuAprenda and stuAprendaNA are check boxes on the open form
It seems that regardless of answering Yes or No the IF statement always
gives me the "ELSE" result.
What have I got wrong?
Thanks
Dave
Dim NAAprenda As Integer
NAAprenda = MsgBox("Is this Student Required to provide the APRENDA?",
vbYesNo)
If NAAprenda = True Then
Me!stuAprenda = True
Else
Me!stuAprendaNA = True
End If
stuAprenda and stuAprendaNA are check boxes on the open form
It seems that regardless of answering Yes or No the IF statement always
gives me the "ELSE" result.
What have I got wrong?
Thanks
Dave