Hi,
I want to put my own error msg to my combo box. I have a combo box and set the Limit to List "Yes". When a user put the product type which is not from list, it gives an error message. I gave the error msg to "On Not In List" under event procedure but still I'm getting automatic error msg from system. I want to remove this system generated error msg.
I attached my error generation code and it is very simple.
Appreciat your help.
I want to put my own error msg to my combo box. I have a combo box and set the Limit to List "Yes". When a user put the product type which is not from list, it gives an error message. I gave the error msg to "On Not In List" under event procedure but still I'm getting automatic error msg from system. I want to remove this system generated error msg.
I attached my error generation code and it is very simple.
Code:
Private Sub ProducType_NotInList(NewData As String, Response As Integer)
On Error GoTo Error_Handler
Error_Handler:
MsgBox "List not found."
End Sub