N
Nick
If Year(Me.[oTDLdaTE]) <> Year(Date) Then
MsgBox "Year is incorrect, must be current year", , "Cannot continue "
Cancel = True
End If
I would like to chang to vbYesNoCancel. Some thing like this
If Year(Me.[oTDLdaTE]) <> Year(Date) then
"MsgBox" vbYesNoCancel"Do you wish to retain date entered" IF "Yes" Msgbox
Date retained IF "No" Msgbox "Please enter date"
I am not sure how to use vbYesNoCancel.
MsgBox "Year is incorrect, must be current year", , "Cannot continue "
Cancel = True
End If
I would like to chang to vbYesNoCancel. Some thing like this
If Year(Me.[oTDLdaTE]) <> Year(Date) then
"MsgBox" vbYesNoCancel"Do you wish to retain date entered" IF "Yes" Msgbox
Date retained IF "No" Msgbox "Please enter date"
I am not sure how to use vbYesNoCancel.