Conéctate
o
Regístrate
Conéctate
o
Regístrate
Toggle navigation
Inicio
Artículos
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Tutoriales
(current)
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Noticias
Foros
Eventos
Empleo
Inicio
Foros
Foros de Visual Basic
texBox vacio
×
Conéctate a Programacion.net
Conectarme a Programacion.net
texBox vacio
Responder
otreblig
30 de Noviembre del 2005
como deshabilitar un boton si un texbox esta vacio?
Rosa
30 de Noviembre del 2005
Private Sub Text1_Change()
If Len(Text1.Text) = 0 Then
Command1.Enabled = False
Else
Command1.Enabled = True
End If
End Sub
Responder