i have a form with many text boxes and many labels positioned next to them. the text boxes and labels are postioned in a way that looks like a grid. if the end user types something into the first text box, the already in visible label next to it becomes visible
this works great, but moving on this same coding stops working for making the label visible...
and so on....
any ideas as to why this may be happening?
Code:
Private Sub Text_AfterUpdate()
Me.Label349.Visible = True
End Sub
Code:
Private Sub Text01_AfterUpdate()
Me.Label350.Visible = True
End Sub
Private Sub Text02_AfterUpdate()
Me.Label351.Visible = True
End Sub
Private Sub Text03_AfterUpdate()
Me.Label352.Visible = True
End Sub
any ideas as to why this may be happening?