H
Hafeez Esmail
How do I write a for loop out of the following pseudocode?
For Each checkbox in this form
If checkbox.Value = True Then
*do something (nothing fancy)*
End If
Next checkbox
I want to cycle through each checkbox to see if it has
been checked. I know I could use a tonne of "If...Else"
statements but I'd rather try something more efficient.
Any help would be muchly appreciated!
Hafeez Esmail
For Each checkbox in this form
If checkbox.Value = True Then
*do something (nothing fancy)*
End If
Next checkbox
I want to cycle through each checkbox to see if it has
been checked. I know I could use a tonne of "If...Else"
statements but I'd rather try something more efficient.
Any help would be muchly appreciated!
Hafeez Esmail