0% found this document useful (0 votes)
18 views1 page

Modul Praktek Java Lat 1

Uploaded by

endikdoank86
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

Modul Praktek Java Lat 1

Uploaded by

endikdoank86
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Latihan 1

OBJEK PROPERTIES ISI PROPERTIES


JframeForm1 Title Form Latih 1
Jbutton1 Text Tombol Pertama
Jbutton2 Text Tombol Kedua
Jbutton3 Text Tombol Ketiga
Jbutton4 Text Normal
Jbutton5 Text Keluar
Jlabel1 Text Normal
Font
- Name Arial
- Size 36

KOMPONEN KODE
EVENT
jButton1 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Pertama");
}
jButton2 private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Kedua");
}
jButton3 private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Ketiga");
}
jButton4 private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
jLabel1.setText("Tombol Normal");
}
jButton5 private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}

You might also like