Texto en textobox

Como le ago para que cuando un textobox le digiten texto inhabilite un commandboton (botón). Gracias qdtb

1 Respuesta

Respuesta
1
Prueba algo como esto, haber si te satisface:
Private Sub TextBox1_Change()
If Not TextBox1.Value = Empty Then
Me.CommandButton1.Enabled = False
Else
Me.CommandButton1.Enabled = True
End If
End Sub

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas