79270244

Date: 2024-12-11 01:40:30
Score: 1.5
Natty:
Report link

SetFocus for Option button click and Change for textbox does the trick:

Private Sub OptionO_Click()
    Me.TextO.SetFocus
End Sub

Private Sub TextO_Change()
    Me.OptionO.Value = True
End Sub
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chris Peh