Hello everyone:
When I run the debug i get a compile error with the below code.
Private Sub Combo118_BeforeUpdate(Cancel As Integer)
If IsNull(Me.Combo118) Then
MsgBox "The blank field is required....", vbOKOnly
Me.Combo118.SetFocus
Cancel = True
Exit Sub
End If
End Sub
It states it cannot find Combo118.
How can I find where this was used on a form and which form?
Thank you.
Lou