OPTION BUTTON

USUARIO.EXCLUIDOS 25/05/2004 19:37:03
#26650
Tenho um form com 2 options e quero quando marcado um ele execute uma bateria de tarefas e quando clicado no outro logo após faça outra bateria de tarefas, e quando clique de novo no primeiro faça tudo de novo...

Jah tentei assim

If opt1.Value = True Then
txt.Text = "1 check"
End If
If opt2.Value = False Then
txt.Text = "2 check"
End If

e assim

Select Case opt1 Or opt2 = True
Case opt1
txt.Text = "1 checado"
Case opt2
txt.Text = "2 checado"
End Select

e nada de resultado =(

Alguem pode me ajudar???
USUARIO.EXCLUIDOS 25/05/2004 20:14:10
#26651
Resposta escolhida
Tentei o código abaixo e funcionou perfeitamente:

Private Sub opt1_Click()
If opt1.Value Then
txt.Text = "1 check"
ElseIf opt2.Value Then
txt.Text = "2 check"
End If
End Sub

Private Sub opt2_Click()
If opt1.Value Then
txt.Text = "1 check"
ElseIf opt2.Value Then
txt.Text = "2 check"
End If
End Sub


Espero ter ajudado
Tópico encerrado , respostas não são mais permitidas