Hello,
I would like to reset the a bunch of controls on my screen(textboxes, radio buttons), that I would like to reset. I have tried setting the Reset method of these controls to a variable of type boolean, and set the variable to true when i need the controls reset, but the controls are not being reset to their default values, am I missing something?
Solved! Go to Solution.
Hi @John_Martel
On Visible of your form set that variable to false
Then when you want to reset , set that variable to true
next if you need to reset again, you would have to change it back to false then true
so when resetting try
set(var,false);set(var,true)
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @John_Martel
On Visible of your form set that variable to false
Then when you want to reset , set that variable to true
next if you need to reset again, you would have to change it back to false then true
so when resetting try
set(var,false);set(var,true)
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks, gotta love global variables!!
User | Count |
---|---|
140 | |
133 | |
79 | |
75 | |
74 |
User | Count |
---|---|
210 | |
200 | |
71 | |
67 | |
55 |