Hi, I'm a newbie and have a quick question. I have introduced an "Oncurrent event" in order to check if two textbox have the same value. My code does not work but when I go step by step it does!!! Do you think the code is too fast so that the form doesn't have enough time to refresh? Here is the simple code:
Private Sub Form_Current()
If Me.SumaDebe = Me.SumaHaber Then
MsgBox "ok", vbOKOnly
Else
MsgBox "error", vbOKOnly
End If
End Sub
Any ideas? Thanks