domingo, 21 de abril de 2019

JAVA SWING
============

Poner colores  y demas al campo de texto

           txtDNI1.setBackground(new java.awt.Color(240,240,240));
           txtDNI1.setEditable(false);
           txtDNI1.setForeground(Color.red); 
           lblDNI.setForeground(Color.red);

No hay comentarios:

Publicar un comentario

Instalar MySQL Server en Fedora 42

Instalar MySQL Server en Fedora 42 sudo dnf install mysql8.4-server Habilitar e iniciar el servicio MySQL sudo systemctl enable mysqld sudo ...