I currently have a an after update event that cycles through the textboxes in a form and toggles their visibility on if they are numbered below a certain threshold number.
Dim i As Long Dim iMin As Long Dim iMax As Long iMin = 1 iMax = Me.txtMeasure.Value With Me For i = iMin To iMax .Controls("V" & i).Visible = True Next i End With The textboxes are named V1, V2, V3...V110, etc." while the labels corresponding to each textbox are labeled lblV1, lblV2, lblV3, lblV110, etc." The textboxes and labels are defaulted to be invisible while the after update event toggles their visibility on. The code works for the textboxes but fails to work for the labels. I have noticed that the while the labels don't appear visible, switching to design view and then back to form view, the labels suddenly appear visible. Is there a way to debug this so that they both appear visible at the same time?