Clearing Form for New Entry

KLahvic01

Registered User.
Local time
Today, 13:36
Joined
May 3, 2012
Messages
80
Hi all!

This is my first post here aside from my intro so go easy...

I have a form where when I click the save button, I want all the fields to be reset to blank. I think I have figured out the save new code, but the catch is, I have 2 check boxes that when checked they disable some text boxes and what is happening is when the save new command is run, the fields all get cleared and so do the check boxes but the fields still remain disabled. Any ideas on how to fix this?

KJ
 
after the code you use to "save new", include
  • textboxYourName.enabled = true
OR
  • textboxYourName.Locked = False
 
Thank you so much. Now to figure out how to mark this solved.
 

Users who are viewing this thread

Back
Top Bottom