From: mls via AccessMonster.com on
Hi, I want to create an alert to check the Final( checkbox ) field, if
date_issued is enter.
if date_issued is null then do nothing, In what even I have to code this and
how?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-formscoding/201001/1

From: Marshall Barton on
mls via AccessMonster.com wrote:

>Hi, I want to create an alert to check the Final( checkbox ) field, if
>date_issued is enter.
>if date_issued is null then do nothing, In what even I have to code this and
>how?


Based on just that one requirement, you can use the date
text box's AfterUpdate event.

If Not IsNull(Me.date_issued) Then
MsgBox "check box message here"
End If

--
Marsh
MVP [MS Access]