J
jokobe
If have this code in the BeforeUpdate event:
If Me.Dirty Then
If IsNull(text_switch) Then
MsgBox ("My Message!!!!")
Me.Dirty = False
stDocName = "a_hefte_verbindung"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End If
End If
Access always gives a runtime error with the Me.Dirty part:
errorr 2115
Why isn't me.dirty not working???
If Me.Dirty Then
If IsNull(text_switch) Then
MsgBox ("My Message!!!!")
Me.Dirty = False
stDocName = "a_hefte_verbindung"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End If
End If
Access always gives a runtime error with the Me.Dirty part:
errorr 2115
Why isn't me.dirty not working???