This is a simple thing but I am a simple user!
I have form with many check boxes, radio boxes and text boxes. I would like to loop through the controls to changes their values.
example
There are 40-50 check boxes to be reset to false all at once (i.e. cleared or reset).
I have tried using things like:
Dim ctrTemp as control
for each ctrTemp in me.controls
me.ctrTemp.value = FALSE
next
but I was not able to acoomplish any thing.
It seems that I am able to madify the control properties but not their values...!.
I have form with many check boxes, radio boxes and text boxes. I would like to loop through the controls to changes their values.
example
There are 40-50 check boxes to be reset to false all at once (i.e. cleared or reset).
I have tried using things like:
Dim ctrTemp as control
for each ctrTemp in me.controls
me.ctrTemp.value = FALSE
next
but I was not able to acoomplish any thing.
It seems that I am able to madify the control properties but not their values...!.