¿Cómo hago la siguiente condición?

Holi buen día tarde o noche, mi problema es el siguiente, yo tengo este código

Private Sub optadcsi_Click()
If optadcsi.Value = True Then txtadc.Enabled = True
End Sub
Private Sub optadcno_Click()
If optadcno.Value = True Then txtadc.Enabled = False
End Sub
Private Sub optivasi_Click()
If optivasi.Value = True Then txtiva.Enabled = True
End Sub
Private Sub optivano_Click()
If optivano.Value = True Then txtiva.Enabled = False
End Sub
Private Sub optmdosi_Click()
If optmdosi.Value = True Then txtmdo.Enabled = True
End Sub
Private Sub optmdono_Click()
If optmdono.Value = True Then txtmdo.Enabled = False
End Sub

Como ven son para diversos OptionButoms que hace que un determinado Textbox este habilitado o no, pero necesito que cuando el usuario marque "NO" a ese textbox también se le un valor de 0, me podiarn ayudar con eso

1 Respuesta

Respuesta
2

[hola

Private Sub optmdono_Click()
If optmdono.Value = True Then  txtmdo=0 :txtmdo.Enabled = False 
End Sub

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas