[VBA]
For Each ctl In Me.Controls
' depends which controls you want to check - may need to add
' check boxes and list boxes as well
Select Case ctl.ControlType
Case acTextBox, acComboBox
' ...
End Select
Next ctl

[/VBA]