philbullock1223
Registered User.
- Local time
- Today, 16:33
- Joined
- Dec 31, 2011
- Messages
- 55
I have a very simple form where I would like the user to have the option of accepting all the default values on the form.
This is causing me a problem because if the user wants to accept the default values, he will hit "OK" however the record is not saved because the form was not dirty.
Inside the "OK" button I have tried code:
The first one gives no errors but doesn't seem to dirty the form. The second on is giving me an error on Me.Dirty=True. Is there any way to dirty the form?
This is causing me a problem because if the user wants to accept the default values, he will hit "OK" however the record is not saved because the form was not dirty.
Inside the "OK" button I have tried code:
Code:
Me.AnyBox.Value = Me.AnyBox.Value
DoCmd.Save
DoCmd.Close
Code:
Me.Dirty=True
DoCmd.Close
The first one gives no errors but doesn't seem to dirty the form. The second on is giving me an error on Me.Dirty=True. Is there any way to dirty the form?