M
mark r
won't work:
Private SUB commandbutton_click()
ON ERROR GOTO ERR
If ISnull(field) then
GOTO EXIT
Me.field = "none"
End IF
EXIT
exit sub
ERR
etc......
neither will this work:
If ISnull(field) then
GOTO EXIT
Me.field = NULL
End IF
EXIT
exit sub
ERR
etc......
Private SUB commandbutton_click()
ON ERROR GOTO ERR
If ISnull(field) then
GOTO EXIT
Me.field = "none"
End IF
EXIT
exit sub
ERR
etc......
neither will this work:
If ISnull(field) then
GOTO EXIT
Me.field = NULL
End IF
EXIT
exit sub
ERR
etc......