R
Rob Hofkens
Hello people
Whenever you change data on a form via keyboard the Dirty property responce
to that.
It's possible to perform actions via the Form_Dirty sub after this.
But when I change field values via VB then this system doesn't work anymore.
A sample :
A table holds some numeric code.
Everytime the user adds a new record he needs to add a new unique code.
To make things simple I generate a code for him and present it in a dialog
window.
When he accepts the new code I simply do : Me!
Whenever you change data on a form via keyboard the Dirty property responce
to that.
It's possible to perform actions via the Form_Dirty sub after this.
But when I change field values via VB then this system doesn't work anymore.
A sample :
A table holds some numeric code.
Everytime the user adds a new record he needs to add a new unique code.
To make things simple I generate a code for him and present it in a dialog
window.
When he accepts the new code I simply do : Me!
Code:
= strCode.
This however doesn't trigger the Dirty event/property ?
Since I want to create some sub's that count on the Dirty system I have to
rethink this now.
Any help in this matter would be apreciated.
Thanx in advance,
Rob.