I know how to cycle through all the controls on a form with For Each Ctl in
Forms!.../Next and how to check if the control is a text box inside the loop by
checking the ControlType property. Is there a way to directly cycle through only
the textboxes on a form? Something like --
For Each Ctl acTextbox in Forms!...
Next Ctl