legalhustler
Well-known Member
- Joined
- Jun 5, 2014
- Messages
- 1,158
- Office Version
- 365
- Platform
- Windows
I have a form with 4 different option groups and contains radio buttons (Yes, No, TBD). I select the values for a record, save it, close the form and reopen the record, but my selection does not show on the form. However, it is showing in the source Table. How can I fix this?
Most of the option groups has a macro associated to it. I'm not sure, but do I need to modify the macro to visibile or something? When I select a radio button and save the form it should save my selection whenever I open the record. Below is an example for one of the radio button option group.
Most of the option groups has a macro associated to it. I'm not sure, but do I need to modify the macro to visibile or something? When I select a radio button and save the form it should save my selection whenever I open the record. Below is an example for one of the radio button option group.
Code:
Private Sub Frame103_AfterUpdate()
Select Case Me![Frame103]
Case 1
Me![Text101] = "Y"
Me.Frame112.Locked = False
Case 2
Me![Text101] = "N"
Me.Frame112 = 2
Me.Frame112.Locked = True
Case 3
Me![Text101] = "TBD"
Me.Frame112 = 3
Me.Frame112.Locked = True
End Select
End Sub
Last edited: