Package GUI

Examples of GUI.mainForm


     * @param args the command line arguments
     */
    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            mainForm mainWindow = new mainForm();
            mainWindow.setVisible(true);
        } catch (Exception ex) {
            JOptionPane.showMessageDialog(null,
                    "This system does not support your Operating System! Exiting now",
                    "WinSIS", JOptionPane.ERROR_MESSAGE);
            System.exit(1);
View Full Code Here

TOP

Related Classes of GUI.mainForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.