A
Andy
Hi;
I created a Public Function for "Not In List" with a Msgbox and only an "Ok"
button.
Want to use the same Msgbox response in several "Not In List".
It works correctly in a Sub procedure:
Private Sub cbxName_NotInList(NewData As String, Response As Integer)
MsgBox "Custom Message."
Response = acDataErrContinue
End Sub
but when used as a Function and the "Ok" button is clicked in the custom
Msgbox, Access's own internal msgbox then pops up.
How do you get only the msgbox that you want to display.
Searched microsft's Access support center. Nothing even close.
Thanks in Advance.
Andy
I created a Public Function for "Not In List" with a Msgbox and only an "Ok"
button.
Want to use the same Msgbox response in several "Not In List".
It works correctly in a Sub procedure:
Private Sub cbxName_NotInList(NewData As String, Response As Integer)
MsgBox "Custom Message."
Response = acDataErrContinue
End Sub
but when used as a Function and the "Ok" button is clicked in the custom
Msgbox, Access's own internal msgbox then pops up.
How do you get only the msgbox that you want to display.
Searched microsft's Access support center. Nothing even close.
Thanks in Advance.
Andy