Set up text boxes in MS Access form as array?
forms, ms-access, vba
Solution
You can access the controls and iterate through them. Have to pick an iterable naming scheme.
Me.Controls("txt" & intloop)
Problem
Is there a way to set up text boxes in Access forms as arrays for use in loops with VBA?