Hi. I have an option group, and based on the option chosen in the group, I want certain labels and textboxes to have their visible property set to True (the default on the form is False). So I wrote the code below:
No love. Clicking on the appropriate option button whose value is 4 does not set the label's visible property to True on the form. Rather, I should say that clicking on the option button does not make the label appear on the form as it should. I don't get any error messages, and the label does not appear after moving focus away from the option button, either (I know that is not how AfterUpdate works, but I tried anyway just to see if anything would happen...). Please help me stop scratching my butt on this one. Thanks.
"There is no spoon..." - anonymouse enlightened child
Code:
Private Sub Frame13_AfterUpdate()
If Me.Frame13.Value = 4 Then
Me.lblBuyIn.Visible = True
End If
End Sub
No love. Clicking on the appropriate option button whose value is 4 does not set the label's visible property to True on the form. Rather, I should say that clicking on the option button does not make the label appear on the form as it should. I don't get any error messages, and the label does not appear after moving focus away from the option button, either (I know that is not how AfterUpdate works, but I tried anyway just to see if anything would happen...). Please help me stop scratching my butt on this one. Thanks.
"There is no spoon..." - anonymouse enlightened child