background preloader

Kasiko

Facebook Twitter

Entorno gráfico en Java. Trail: Creating a GUI With JFC/Swing (The Java™ Tutorials) [código] Conexiones Cliente-Servidor mediante sockets en Java « Linux, Java y programación. Java: Convertir un Date en un String formato dd/MM/aaaa - Escapando del Interbloqueo. Free Address Book Script ( PHP + MySQL ) Ver 1.18 ( Security patch applied ) This is a free Address Book PHP script with a MySQL database.

This script allows users to search, view, add, edit, and delete address entries from a web browser. Each user can have a different login username. It's very easy to add/remove fields to/from the script. In fact, I've seen others using this script to store something totally different from addresses. You can customize Address Book Script online and/or manually. To manually customize it, please see Customization Quick Guide.

To customize online, use Address Book Builder, which guides you through the steps of building a custom version of Address Book Script. Ajax Fileup Addon for Address Book Script Monday, August 12, 2013 Address Book Script: Converting a Text Field to a Date Field To convert a text field to a date field, open web/codelib/asc/df.fl. The following example is a typical text field definition: (example) Edit the value of XA_CLASS and XA_SEARCH, and add XA_FORMAT line like shown below: <? Top. 40+ Invaluable PHP Tutorials and Resources. 43 Ways to Optimize your PHP Code. Java bookmarks.

PHP/MySQL.

Pearltrees videos

Help. Foros - Java - RE:Agregar Imagen al JPanel (Danilo Juvinao) - La Web del Programador. Import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JPanel; /** * * @author Edwin Bismark Reyes Rodríguez */ public class JEImagePanel extends JPanel{ private Image image = null; private Icon icon; /** Creates a new instance of JEImagePanel */ public JEImagePanel() { protected void paintComponent(Graphics g) { Graphics2D g2 =(Graphics2D) g; if(getImage()!

Public Image getImage() { return image; } public void setImage(Image image) { this.image = image; } public Icon getIcon() { return icon; } public void setIcon(Icon icon){ this.icon=icon; setImage(((ImageIcon)icon).getImage()); } }