
11-06-2007, 05:05 PM
|
 |
Impetuous & volatile
* Expert *
|
|
Join Date: Apr 2005
Location: 127.0.0.1
Posts: 2,171
|
|
This might be something:
Code:
'The control to iterate through
Dim VariableName As ControlType
' Go through all of those controls
For Each VariableName In FormName.Controls
If Condition Then
DoSomething()
End If
Next
|
|