Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/12/2009, 17:57
KenMasters
 
Fecha de Ingreso: abril-2005
Ubicación: Piura - Perú
Mensajes: 189
Antigüedad: 19 años, 1 mes
Puntos: 0
Respuesta: boton guardar

Aunque tienes tambièn para realizar de la siguiente manera

En cada caja de text colocas
Código:
Private Sub Text1_Change()
If Not (text1.text="") And (text2.text="") And (text3.text="") then
  Command1.enabled = true
else
  Command1.enabled = false
end if
End sub