Cuando el form se inicia por defecto se active el Option(1) y cuando hago click en otra option para cambiar se me queda activada la anterior, he probado con este código pero no funciona:
Código: Seleccionar todo
If option(3).Value = True Then
option(1).Value = False
option(2).Value = False
Else
If option(1).Value = True Then
option(3).Value = False
option(2).Value = False
Else
If option(2).Value = True Then
option(1).Value = False
option(3).Value = False
End If
End If
End If
End Sub