This is just one method<br>---------------------<br>Private Sub Form_AfterUpdate()<br> If Me![FirstName] = "" Or IsNull(Me![FirstName]) Then<br> MsgBox "Please key in The FirstName", vbExclamation, "Missing Info"<br> Me![FirstName].SetFocus<br> Exit Sub<br> End If<br> If Me![LastName] = "" Or IsNull(Me![LastName]) Then<br> MsgBox "Please key in The LastName", vbExclamation, "Missing Info"<br> Me![LastName].SetFocus<br> Exit Sub<br> End If<br>End Sub<br><br>----------------<br><br>Now it seems a little redundant but, if the data is missing it brings them back to the exact text box where the data is missing. <p>DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br> Ask me how Bar-codes can help you be more productive.