Tema: TextBox
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/11/2010, 22:03
Avatar de mrocf
mrocf
 
Fecha de Ingreso: marzo-2007
Ubicación: Bs.As.
Mensajes: 1.103
Antigüedad: 17 años, 1 mes
Puntos: 88
TextBox

Podrías utilizar algo como:

Código VB:
Ver original
  1. Private Sub TextNombre_Change()
  2.    cmdInsertar.Enabled = CBool(Len(TextNombre))
  3. End Sub

Saludos, Cacho.