Como Puedo validar un checkbox automáticamente

Hola xabi podrías ayudarme,
Como Puedo validar un checkbox cando al introducir un texto en un textbox automáticamente el checkbox se active.
Gracias.

1 Respuesta

Respuesta
1
Prueba con esto:
Private Sub Text1_Change()
Check1.Enabled = Text1.Text = "AAA"
If Text1.Text = "AAA" Then
Check1.Value = 1
Else
Check1.Value = 0
End If
End Sub

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas