Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

public MenuUtama() {

initComponents();

private void jMenuItem5ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new Buku().setVisible(true);

this.dispose();

private void jMenuItem6ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new ANGGOTA().setVisible(true);

this.dispose();

private void jMenuItem3ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new Petugas().setVisible(true);

this.dispose();

private void jMenuItem7ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:


new DataPengembalian().setVisible(true);

this.dispose();

private void jMenuItem4ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new DataPeminjam().setVisible(true);

this.dispose();

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new Buku().setVisible(true);

this.dispose();

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new Petugas().setVisible(true);

this.dispose();

private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new ANGGOTA().setVisible(true);
this.dispose();

private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new DataPeminjam().setVisible(true);

this.dispose();

private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

new DataPengembalian().setVisible(true);

this.dispose();

private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {

// TODO add your handling code here:

int tny = JOptionPane.showConfirmDialog(null,

"Are You Want to exit?","Message",JOptionPane.YES_NO_OPTION);

if (tny==0){

try {

System.exit(0);

} catch (Exception e) {

}
}

You might also like