Hi, I've a problem in the BeforeInsert event of my form Temi.
I putted this validation code:
If IsNull(Me.descrizione) Then
Cancel = True
MsgBox "Descrizione Obbligatoria", vbInformation, "Validazione"
Me.descrizione.SetFocus
Me.Undo
End If
but if I try to...