Ubuntu 8.10 ( Intrepid Ibex ) : Coming Soon
Non vuoi aspettare? Scarica la Beta ora!!!

Comments [0]
Comments [0]
Scegliere il LookAndFeel:
String lookAndFeel = null;
lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
lookAndFeel = UIManager.getSystemLookAndFeelClassName();
lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
LookAndFeel esistenti di default in java:
Base: UIManager.getCrossPlatformLookAndFeelClassName();
System: UIManager.getSystemLookAndFeelClassName();
Motif: com.sun.java.swing.plaf.motif.MotifLookAndFeel";
GTK: com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
Settare il LookAndFeel:
UIManager.setLookAndFeel(lookAndFeel);
Per il LookAndFeel Metale si posso scegliere diversi temi:
DefaultMetal: MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme());
Ocean: MetalLookAndFeel.setCurrentTheme(new OceanTheme());
Per modificare il LookAndFeel anche della finestra (di default usa quella dell'SO):
JFrame.setDefaultLookAndFeelDecorated(true);
Comments [0]
Comments [0]
Comments [0]
Che dire.....grazie a Mozilla!
Vi allego anche il certificato che fornisce Mozilla per aver partecipato al Download Day 2008 del browser Firefox 3. A dire la verità è un pò fasullo perchè chi riesce ad arrivare al form, può inserire qualsiasi nome: sempre in allegato guardate un pò anche chi l'ha scaricato :-P !!!
Posto anche la torta che ha mandato la Microsoft a Mozilla.....gentili no!?!?

Comments [0]
Una pillola di programmazione SQL per voi....
Per modificare il motore di memorizzazione:
ALTER TABLE [name table] TYPE = [name engine]
Comments [0]