Hi,
Does anyone know how to reset a unbound field?
Situation:
I have a unbound field (default value "0") - when the user enter some invalid I will trap by using:
Private Sub Text73_BeforeUpdate(Cancel As Integer)
If Me.Text73 > Me.Text69 Then
Me.Text73 = 0
Cancel = True
Exit Sub
End If
End Sub
I get the error message:
The macro or function set to the BeforeUpdate or ValidationRule property for this field is preventing Microsoft Acess from saving the data in the field.
Thanks
Does anyone know how to reset a unbound field?
Situation:
I have a unbound field (default value "0") - when the user enter some invalid I will trap by using:
Private Sub Text73_BeforeUpdate(Cancel As Integer)
If Me.Text73 > Me.Text69 Then
Me.Text73 = 0
Cancel = True
Exit Sub
End If
End Sub
I get the error message:
The macro or function set to the BeforeUpdate or ValidationRule property for this field is preventing Microsoft Acess from saving the data in the field.
Thanks