How do I reference a control, not its default property
I'm trying to build a collection of a few controls (a subset of controls from a report in Access) for later use in a foreach statement
Code:
Dim ControlList1 As New Collection ' to hold controls for formating
ControlList1.Add (tbRevision) ' does not work
ControlList1.Add (Me.Controls("tbChecklist")) ' does not work either
The collection gets the value of the default property for the...