I'm trying to capture changes to a form. It works except when the 'Del' key is used.
Any ideas would be helpful.
Thank you.
Code:
Private Sub txtAddress_KeyPress(KeyAscii As Integer)
Call FormChange
End Sub
Public Sub FormChange(ByRef bFormChange As Boolean)
Dim obj As Object
For Each obj In frmSStab
If TypeOf obj Is TextBox Then
If obj.DataChanged Then
bFormChange = True
End If
End If
Next obj
End Sub
Any ideas would be helpful.
Thank you.