Validar textbox

¿Hola señor experto
me podría yudar con los siguiente por favor? Vb6
tengo varios textbox : textbox1.text, textboxt2, hasta 5 textbox5
quiero validarlos cuando son vbnullstring que el commandbutton1 quede enabled = false,
pero si todos los texboxt contienen texto se habilite es decir enabled = true.
Gracias.
Respuesta
1
Prueba así:
Dim bBoton As Boolean
bBoton = True
If Textbox1.Text = vbNullString then bBoton = False
If Textbox2.Text = vbNullString then bBoton = False
...
If Textbox5.Text = vbNullString then bBoton = False
CommandButton1.Enabled = bBoton

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas