If I had 5 text boxes on a form, TextBox1...TextBox5, is there a method to do something like this?
Dim strFld As String
For intFor = 1 to 5
strFld = "TextBox" & intFor
Me(strFld).Text = intFor
Next
It doesn't like the line of Me(strFld) but I figure there must be a way to reference a field via a variable instead of hardcoding the field name.