I am checking if a field is null on form_beforeUpdate event.
if it's null, I am alerting in using msgBox and set focus to the same field.
I would like to keep alerting it until this field is filled out. The problem is that after one msg, the user can still move on to the next record, for the "form_beforeUpdate" does not happen again (because no further action has been made by user after my msgBox, just moving on).
Also msBox on lostFocus event of that specific field (in addition to the form_beforeUpdate) is not good, for it happens only when looses focus: Still the user can ignore the msg and move on.
I also tried to handle it on the specific field before_update, and it did not work good enough.
What shall I do in order to keep notifying the user a field is missing (and letting him fill it in, not enter into an endless loop of msgs... )
I do not want to allow the user to leave this form without this field filled out, and I want him to fill it in when he's leaving the record, not when he's leaving the whole form after many records such as that can be empty).
Thanks
if it's null, I am alerting in using msgBox and set focus to the same field.
I would like to keep alerting it until this field is filled out. The problem is that after one msg, the user can still move on to the next record, for the "form_beforeUpdate" does not happen again (because no further action has been made by user after my msgBox, just moving on).
Also msBox on lostFocus event of that specific field (in addition to the form_beforeUpdate) is not good, for it happens only when looses focus: Still the user can ignore the msg and move on.
I also tried to handle it on the specific field before_update, and it did not work good enough.
What shall I do in order to keep notifying the user a field is missing (and letting him fill it in, not enter into an endless loop of msgs... )
I do not want to allow the user to leave this form without this field filled out, and I want him to fill it in when he's leaving the record, not when he's leaving the whole form after many records such as that can be empty).
Thanks