Author
Help building a GUI/Netbeans
Jared Upton
Greenhorn
Joined: Apr 07, 2006
Posts: 15
I used netbeans to build a GUI but when i try to compile the .java code in Textpad to test it I get an error. Sorry If this is a stupid question I am new to GUI and trying to find an easier way to do it. /* * TeamProjext.java * * Created on April 19, 2006, 10:56 PM */ /** * * @author Jarod */ public class TeamGUI extends javax.swing.JFrame { /** Creates new form TeamProjext */ public TeamGUI() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents private void initComponents() { jButton1 = new javax.swing.JButton (); jButton2 = new javax.swing.JButton (); jPanel1 = new javax.swing.JPanel (); jLabel3 = new javax.swing.JLabel (); jLabel4 = new javax.swing.JLabel (); jLabel5 = new javax.swing.JLabel (); jLabel6 = new javax.swing.JLabel (); jLabel7 = new javax.swing.JLabel (); jLabel8 = new javax.swing.JLabel (); jLabel9 = new javax.swing.JLabel (); jLabel1 = new javax.swing.JLabel (); jLabel2 = new javax.swing.JLabel (); jLabel10 = new javax.swing.JLabel (); jLabel11 = new javax.swing.JLabel (); jLabel12 = new javax.swing.JLabel (); jLabel13 = new javax.swing.JLabel (); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jButton1.setText("Process Order"); jButton2.setText("Deliver"); jLabel3.setText("Total Trucks needed"); jLabel4.setText("Regular"); jLabel5.setText("Refrigerated"); jLabel6.setText("Total Weight"); jLabel7.setText("Total Length"); jLabel8.setText("Spoilable"); jLabel9.setText("Regular"); jLabel1.setText("jLabel1"); jLabel2.setText("jLabel2"); jLabel10.setText("jLabel10"); jLabel11.setText("jLabel11"); jLabel12.setText("jLabel12"); jLabel13.setText("jLabel13"); org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1); jPanel1.setLayout(jPanel1Layout); jPanel1Layout.setHorizontalGroup( jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jPanel1Layout.createSequentialGroup() .add(106, 106, 106) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel5, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 77, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE) .add(jLabel4)) .add(62, 62, 62) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING) .add(jLabel12) .add(jLabel13)) .addContainerGap(139, Short.MAX_VALUE)) .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup() .addContainerGap() .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel8) .add(jLabel9)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 55, Short.MAX_VALUE) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel3) .add(jPanel1Layout.createSequentialGroup() .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel6) .add(jLabel1) .add(jLabel2)) .add(85, 85, 85) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel11) .add(jLabel10) .add(jLabel7)))) .add(83, 83, 83)) ); jPanel1Layout.setVerticalGroup( jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup() .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jLabel6) .add(jLabel7)) .add(16, 16, 16) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jLabel8) .add(jLabel1) .add(jLabel10)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jLabel9) .add(jLabel2) .add(jLabel11)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 47, Short.MAX_VALUE) .add(jLabel3) .add(16, 16, 16) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jLabel4) .add(jLabel12)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel5) .add(jLabel13)) .add(32, 32, 32)) ); org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(layout.createSequentialGroup() .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addContainerGap()) .add(layout.createSequentialGroup() .add(30, 30, 30) .add(jButton1) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 156, Short.MAX_VALUE) .add(jButton2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 113, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE) .add(26, 26, 26)) ); layout.setVerticalGroup( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup() .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE) .add(jButton1) .add(jButton2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 27, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)) .add(30, 30, 30)) ); pack(); }// </editor-fold>//GEN-END:initComponents /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new TeamGUI().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jButton1; private javax.swing.JButton jButton2; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel10; private javax.swing.JLabel jLabel11; private javax.swing.JLabel jLabel12; private javax.swing.JLabel jLabel13; private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private javax.swing.JLabel jLabel5; private javax.swing.JLabel jLabel6; private javax.swing.JLabel jLabel7; private javax.swing.JLabel jLabel8; private javax.swing.JLabel jLabel9; private javax.swing.JPanel jPanel1; // End of variables declaration//GEN-END:variables } [ April 19, 2006: Message edited by: Jared Upton ]
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35443
posted Apr 19, 2006 23:22:00
0
Without knowing what error you're getting it's hard to advise on this. I don't see import statements for the javax.swing classes or the org.jdesktop.layout classes, though. The latter ones also need to be added to your classpath.
Android apps – ImageJ plugins – Java web charts
subject: Help building a GUI/Netbeans