If you have worked with Access for a while, you have probably at one point or another tried to loop through the controls collection on a form, like the below example:
1 2 3 4 5 6 |
Dim ctrl As Control For Each ctrl In Me.Controls If ctrl.ControlType = acTextBox Then 'do something End If Next |
And as such, you are already aware that…
Recent Comments