Class 12 Information Technology (802) Project
Java & MySQL Project Download Now
Project #1 : Java and MySQL Connectivity Project
Download in Doc and ZIP
Source code : Java NetBeans & MySQL Connectivity Project
public class MainUI extends javax.swing.JFrame {
public MainUI() {
initComponents();
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
AboutMe.setVisible(false);
}
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
new EmpAddUI().setVisible(true);
new EmpAddUI().getAlignmentX();
}
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
new EmpDelUI().setVisible(true);
}
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
new EmpEditUI().setVisible(true);
}
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}
private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {
AboutMe.setVisible(true);
}
private void jButton7ActionPerformed(java.awt.event.ActionEvent evt) {
new EmpNavUI().setVisible(true);
}
private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {
new EmpSearchUI().setVisible(true);
}
private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) {
new EmpTable().setVisible(true);
}
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new MainUI().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JDialog AboutMe;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton5;
private javax.swing.JButton jButton6;
private javax.swing.JButton jButton7;
private javax.swing.JButton jButton8;
private javax.swing.JButton jButton9;
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 jLabel14;
private javax.swing.JLabel jLabel2;
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;
private javax.swing.JSeparator jSeparator1;
// End of variables declaration
}