I am using Access2003. I want to make a little pop up message to inform the end user if the current data is missing an element they should be updating. So I want to place this
If Nz(Me.BoMDate, " ") = " " Then
MsgBox "This item needs a Bill of Material", vbOKOnyl, "Company Name LTD"
End If
so that when the form opens it pops up if the field is null, they can click on OK and update the field - or not - so anyhow where can I put it so it tests the data. I tried OnLoad but it seems to be ahead of seeing the form. I tried OnCurrent but the message pops up 4 times.
It is a Single Form and so there can be more than one record so I would like it to test each time they go to a new record.
Thank you.
If Nz(Me.BoMDate, " ") = " " Then
MsgBox "This item needs a Bill of Material", vbOKOnyl, "Company Name LTD"
End If
so that when the form opens it pops up if the field is null, they can click on OK and update the field - or not - so anyhow where can I put it so it tests the data. I tried OnLoad but it seems to be ahead of seeing the form. I tried OnCurrent but the message pops up 4 times.
It is a Single Form and so there can be more than one record so I would like it to test each time they go to a new record.
Thank you.