Anyone knows how to prevent this [bug]?
Code:
Option Explicit
Private Sub Form_Load()
Text1.TabIndex = 0
Option1.TabIndex = 1
Option2.TabIndex = 2
Option3.TabIndex = 3
Option3.Value = True
End Sub
Private Sub Text1_Validate(Cancel As Boolean)
Option1.Value = True
'Even though the user didn't click on Option3, and even though in this Validate event the Option1.Value was set to TRUE,
'after this edit box is validated, the selected option button changes back Option3!
End Sub