R
Rod via AccessMonster.com
Okay, I currently have a form consisting of 25 unbound combo boxes.
After data is entered into all of these combo boxes, there's a button
at the bottom of the form coded to enter the info into different tables.
For all of the new data entered, the "On Not In List" event runs. The
code in one of these events is as follows:
Private Sub Album_NotInList(NewData As String, Response As
Integer)
Response = acDataErrContinue
varUpdate3 = 1
End Sub
Now, when I run the form, the form will stop at any "On Not In List"
event and I cannot tap out of it. Since this form is used strictly for
data
entry, I don't want to display a message (of any kind) such as "Do you
want to add this info?" since that is the obvious intention.
Could someone assist in any additional code that is needed to get
out of the "On Not In List" event? Thanks
After data is entered into all of these combo boxes, there's a button
at the bottom of the form coded to enter the info into different tables.
For all of the new data entered, the "On Not In List" event runs. The
code in one of these events is as follows:
Private Sub Album_NotInList(NewData As String, Response As
Integer)
Response = acDataErrContinue
varUpdate3 = 1
End Sub
Now, when I run the form, the form will stop at any "On Not In List"
event and I cannot tap out of it. Since this form is used strictly for
data
entry, I don't want to display a message (of any kind) such as "Do you
want to add this info?" since that is the obvious intention.
Could someone assist in any additional code that is needed to get
out of the "On Not In List" event? Thanks