Hello,
I came across with a code that in fact does what I want.
The problem is that the shading of the option button (on the form) goes grayed out, and if I move on to another field,
all three option buttons on this page grey out.
How can I alter this so that the selected option button stays selected, when moving from field to field?
Thanks in advance, hopefully what I'm after makes sense.
Above is the code I'm using:
Private Sub Frame1_AfterUpdate()
Select Case Frame1
Case1
Me.High = "High"
Case2
Me.High = "Low"
Case3
Me.High = "n/a"
End Select
End Sub