Goto the Properties Box for your combobox, click on the Events tab, then goto
the On Not In List property. Double-click to the right of the box and click
on Code Builder. This will take you to the combobox's NotInList sub. Place
the code here for a message box to pop up giving the Alert information you
mentioned. Anytime a user enters a name not in the source for you combobox
(not in the Customers table) this code will display the messagebox.

Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000
perplexed - 12 Mar 2007 22:26 GMT
YOU'RE FABULOUS!!! THANK YOU. I will go do this right now. It wasn't as
intuitive as I had thought it would be.
> Goto the Properties Box for your combobox, click on the Events tab, then goto
> the On Not In List property. Double-click to the right of the box and click
> on Code Builder. This will take you to the combobox's NotInList sub. Place
> the code here for a message box to pop up giving the Alert information you
> mentioned. Anytime a user enters a name not in the source for you combobox
> (not in the Customers table) this code will display the messagebox.
perplexed - 12 Mar 2007 22:42 GMT
Okay, I'm trying what you suggested, although, I'm pretty green with VBA
code: Here's my code but it's not working, can you tell what I have done
wrong?
Private Sub Customer_NotInList(NewData As String, Response As Integer)
MsgBox Err.Description([ALERT:Either Pick Customer From List or if they are
not in list, then please Add Customer To List By Clicking Button Above.])
End Sub
> Goto the Properties Box for your combobox, click on the Events tab, then goto
> the On Not In List property. Double-click to the right of the box and click
> on Code Builder. This will take you to the combobox's NotInList sub. Place
> the code here for a message box to pop up giving the Alert information you
> mentioned. Anytime a user enters a name not in the source for you combobox
> (not in the Customers table) this code will display the messagebox.