I have another post that is related to this one. In my claim form, if I change the key and then tab until I would normally go to the next record, I get error 3200. What I would like to do is trap it. So, I tried putting in the OnCurrent event this code
on Error Goto err_try
err_try:
if err=3200 then
msgbox "blah blah blah"
sendkeys "{esc}" to put form back the way it was
end if
However, I continue to get error 3200 instead of my message box. Have i tried the wrong event? I also tried before and after update and lostfocus. Help!!
on Error Goto err_try
err_try:
if err=3200 then
msgbox "blah blah blah"
sendkeys "{esc}" to put form back the way it was
end if
However, I continue to get error 3200 instead of my message box. Have i tried the wrong event? I also tried before and after update and lostfocus. Help!!