TheProgrammerGuy
Programmer
I need to flip a bunch of checkboxes and I've forgotten how. They are all named the same with 1 to 60 at the end. I have started looking through old code but that could take a LONG time. Any help is greatly appreciated.
All I need is the syntax for the command that actually does the flipping.
Thanks!
All I need is the syntax for the command that actually does the flipping.
Thanks!
Code:
WITH thisform.pageframe.page1.whatever.
[indent]FOR i = 1 TO 60[/indent]
[indent][indent]mName= checkboxname+ ALLTRIM(STR(i))[/indent][/indent]
[indent][indent]How do I flip them true to false?[/indent][/indent]
[indent]NEXT i[/indent]
ENDWITH