Thursday, December 15, 2016

PBO-11- Pemrograman GUI

GUI adalah singkatan dari Graphical User Interface. GUI merupakan desain aplikasi dengan tampilan visual sehingga pengguna dapat dengan mudah menggunakan aplikasi. The Java Foundation Class (JFC), merupakan bagian penting dari Java SDK, yang termasuk dalam koleksi dari API dimana dapat mempermudah pengembangan aplikasi JAVA GUI. JFC termasuk diantara 5 bagian utama dari API yaitu AWT dan Swing. 

Tiga bagian yang lainnya dari API adalah Java2D, Accessibility, dan Drag dan Drop. Semua itu membantu pengembang dalam mendesain dan mengimplementasikan aplikasi visual yang lebih baik.

AWT dan Swing menyediakan komponen GUI yang dapat digunakan dalam membuat aplikasi Java dan applet. Anda akan mempelajari applet pada bab berikutnya. Tidak seperti beberapa komponen AWT yang menggunakan native code, keseluruhan Swing ditulis menggunakan bahasa pemrograman Java.

Swing menyediakan implementasi platform-independent dimana aplikasi yang dikembangkan dengan platform yang berbeda dapat memiliki tampilan yang sama. Begitu juga dengan AWT menjamin tampilan look and feel pada aplikasi yang dijalankan pada dua mesin yang berbeda menjadi terlihat sama. Swing API dibangun dari beberapa API yang mengimplementasikan beberapa jenis bagian dari AWT. Kesimpulannya, komponen AWT dapat digunakan bersama-sama dengan komponen Swing.


Materi 



Program ImageViewer V-1


Video Kuliah  Gui dalam Java :









Untuk membuat login panel contohnya sbb :

 import javax.swing.*;  
 import java.awt.*;  
 import java.awt.event.*;  
 public class Login{  
   String Username = "james3302";  
   String Password = "pass";  
   String msg = " ";  
   public static void main(String[] args){  
     Login gui = new Login();  
     gui.go();  
   }  
   public void go(){  
     JFrame frame = new JFrame();  
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  
     JPanel panel = new JPanel();  
     JLabel lblUsername = new JLabel("Username:");    
     JLabel lblPassword = new JLabel("Password:");  
     JTextField txtUsername = new JTextField(20);  
     JTextField txtPassword = new JTextField(20);  
     JButton btnLogin = new JButton("Login");  
     btnLogin.addActionListener(new LoginListener());  
     JButton btnCancel = new JButton("Cancel");  
     btnCancel.addActionListener(new CancelListener());  
     panel.add(lblUsername);  
     panel.add(txtUsername);  
     panel.add(lblPassword);  
     panel.add(txtPassword);       
     frame.getContentPane().add(BorderLayout.CENTER,panel);  
     frame.setSize(300,300);  
     frame.setVisible(true);  
   }  
   public class LoginListener implements ActionListener{  
     public void actionPerformed(ActionEvent event){  
       if(username.equals(txtUsername.getText())){  
         if(password.equals(txtPassword.getText())){  
           msg = "Login Granted!";  
         }else{  
           msg = "Login Denied";  
         }  
       }else{  
         msg = "Login Denied";  
       }    
       JOptionPane.showMessageDialog(null,msg);            
     }  
   }  
   public class CancelListener implements ActionListener{  
     public void actionPerformed(ActionEvent event){  
       txtUsername.setText = " ";  
       txtPassword.setText = "";  
       txtUsername.requestFocus();  
     }  
   }  
 }  

Latihan

1. Membuat frame windows user login dan password .
2. Implementasikan aplikasi image viewer .

Pengumpulan Tugas


Absensi Kelas 






Sumber Pendukung Lain





247 comments:

  1. Nama : Naufal Pranasetyo
    NRP : 5115100057
    PBO Kelas D

    Link: http://naufalpf.blogspot.co.id/2016/12/pbo-pemrograman-gui.html

    ReplyDelete
  2. Nama : Albertus Tommy Halim Putra
    NRP : 5115100030
    PBO Kelas D

    Link: http://blogjavasharing.blogspot.co.id/2016/12/pemrogaman-gui.html

    ReplyDelete
  3. Nama : Rangga Senatama Putra
    NRP : 5115100076

    PBO Kelas D

    Link: http://ranggasenatama076.blogspot.co.id/2016/12/pbo-9-pemrograman-gui.html

    ReplyDelete
  4. Nama : Djohan Prabowo
    NRP : 5115100067

    PBO Kelas D

    Link: http://djohanprabowo.blogspot.co.id/2016/12/pemrograman-gui.html

    ReplyDelete
  5. Nama : Djohan Prabowo
    NRP : 5115100067
    Kelas : PBO D
    Link : https://akuinio.blogspot.co.id/2016/12/pembuatan-gui.html

    ReplyDelete

  6. Nama : Hanif Nashrullah
    NRP : 5115100140
    Kelas : PBO D
    Link : http://hanif1887.blogspot.co.id/2016/12/membuat-gui-login-panel-sederhana.html

    ReplyDelete
  7. Nama : Yoshima Syach Putri
    NRP : 5116100022
    Kelas : PBO - D
    Link : Login System

    ReplyDelete
  8. Nama: Aguel Satria Wijaya
    NRP: 5116100056
    Kelas: PBO D
    Link: Link

    ReplyDelete
  9. Nama : Rifqi Mukti W
    NRP : 5116100076
    Kelas : PBO D
    Link : Login dengan GUI

    ReplyDelete
  10. Nama : Samuel Marcellinus
    NRP : 05111740000134
    Kelas : PBO A
    Link : Link

    ReplyDelete
  11. Nama : Bobbi Aditya
    NRP : 05111740000099
    Kelas : PBO A
    Link : ini linknya

    ReplyDelete
  12. Nama : Reza Adipatria Maranatha
    NRP : 05111740000186
    Kelas : PBO A
    Link : Image Viewer

    ReplyDelete
  13. This comment has been removed by the author.

    ReplyDelete
  14. Nama : Bastian Farandy
    NRP : 05111740000190
    Kelas : PBO A
    Link : Image Viewer GUI

    ReplyDelete
  15. Nama: Donny Fitrado
    NRP: 05111740000171
    Kelas: PBO A
    Link: Link Tugas

    ReplyDelete
  16. Nama : Yudhistiro Adi Nugroho
    NRP : 05111740000165
    Kelas : PBO A
    Link : Link

    ReplyDelete
  17. Nama : Timothyus Tanner
    NRP : 05111740000103
    Kelas : PBO A
    Link : Tugas Image

    ReplyDelete
  18. Nama : Akmal Darari Rafif B
    NRP : 05111640000148
    Kelas : PBO A
    Link : ImageViewer 1.0

    ReplyDelete
  19. This comment has been removed by the author.

    ReplyDelete
  20. Nama : Sherly Rosa Anggraeni
    NRP : 05111740000018
    Kelas : PBO A
    Link : Tugas

    ReplyDelete
  21. Nama : Yuki Yanuar Ratna
    NRP : 05111740000023
    Kelas : PBO A
    Link : Image Viewer Versi 1.0

    ReplyDelete
  22. Nama : Ifta Jihan N
    NRP : 05111740000034
    Kelas : PBO A
    Link : Tugas

    ReplyDelete
  23. Nama : Bima S. Ramadhan
    NRP : 05111740000081
    Kelas : PBO A
    Link : click

    ReplyDelete
  24. Nama : Satria Ade Veda Karuniawan
    NRP : 05111740000130
    Kelas : PBO A
    Link : Tugas

    ReplyDelete
  25. Nama : Nitama Nurlingga Yotifa
    NRP : 05111740000059
    Kelas : PBO A
    Link : Image Viewer

    ReplyDelete
  26. Nama: Indira Nursyamsina Hazimi
    NRP: 05111740000082
    Kelas: PBO A
    Link: ImageViewer 1.0

    ReplyDelete
  27. Nama : Atika Rizki Nurakhmah
    NRP : 05111740000015
    Kelas : PBO - A
    Link : GUI Image Viewer 1.0

    ReplyDelete
  28. Nama : Karina Soraya P
    NRP : 05111740000003
    Kelas : PBO - B
    Link : Image Viewer

    ReplyDelete
  29. Nama : Chaniyah Zulfa Mukhlishah
    NRP : 05111740000115
    Kelas : PBO-B
    LInk : Tugas Image Viewer

    ReplyDelete
  30. Nama: Paramastri Ardiningrum
    NRP: 05111740000019
    Kelas: PBO-B
    Link: Tugas Membuat Image Viewer

    ReplyDelete
  31. Nama : Isnaini Nurul KurniaSari
    NRP : 05111740000010
    Kelas: PBO-B
    Link : GUI Image Viewer 1.0

    ReplyDelete
  32. Nama : Ghannie Wijaya
    NRP : 05111640000048
    Kelas: PBO-B
    Link : Di sini

    ReplyDelete
  33. Nama : Zahrul Zizki Dinanto
    NRP : 05111740000168
    Kelas: PBO-B
    Link : Link

    ReplyDelete
  34. This comment has been removed by the author.

    ReplyDelete
  35. Nama: Mohammad Nafis Naufally
    NRP: 05111640000038
    Kelas: PBO B
    Link: Image Viewer V1

    ReplyDelete
  36. Nama: Carlo Win Marshal
    NRP: 05111740000098
    Kelas: PBO B
    Link: Image Viewer https://enlightechtc.blogspot.com/2018/11/tugas-pbob-gui.html

    ReplyDelete
  37. Nama: muhammad irfan syaifur
    NRP: 05111640000156
    Kelas: PBO B
    Link: image viewer v.1

    ReplyDelete
  38. Nama: Chrisnady Anggaiswara
    NRP: 05111640000153
    Kelas: PBO B
    Link: image viewer v1

    ReplyDelete
  39. Nama : Muhammad Fadhlan Min Robby
    NRP : 05111740000123
    Kelas : PBO B
    Link : image view

    ReplyDelete
  40. Nama : Hendra Ramadani
    NRP : 05111740000055
    Kelas : PBO B
    Link : Image Viewer 1.0

    ReplyDelete
  41. Nama : Krisna Badru Wijaya
    NRP : 05111740000048
    Kelas : PBO B
    Link : Image Viewer 1.0

    ReplyDelete
  42. Nama : Ahmad Syauqi
    NRP : 05111740000093
    Kelas : PBO B
    Link : Image Viewer 1.0

    ReplyDelete
  43. Nama : Yasinta Yusniawati
    NRP : 05111740000054
    Kelas : PBO B
    Link : Image Viewer

    ReplyDelete
  44. Nama : Muhammad Ulil Ahmadi Kamal
    NRP : 05111740007001
    Kelas : PBO B
    Link : Image Viewer 1.0

    ReplyDelete
  45. Nama : Vinsensius Yuda Pratama
    NRP : 05111740000156
    Kelas: PBO B
    Link :Tugas Image Viewer

    ReplyDelete
  46. This comment has been removed by the author.

    ReplyDelete
  47. This comment has been removed by the author.

    ReplyDelete
  48. Nama : Putri Endah Puspitasari
    NRP : 05111740000039
    Kelas: PBO - B
    Link : Image Viewer

    ReplyDelete
  49. This comment has been removed by the author.

    ReplyDelete
  50. Nama : Sherly Rosa Anggraeni
    NRP : 05111740000018
    Kelas : PBO-A
    Link : Versi 3

    ReplyDelete
  51. Nama : Annas Nuril Iman
    NRP : 05111740000042
    Kelas: PBO - B
    Link : Image Viewer

    ReplyDelete
  52. Nama : Karina Soraya P
    NRP : 05111740000003
    Kelas: PBO - B
    Link : Image Viewer 2.0

    ReplyDelete
  53. Nama : Timothyus Tanner
    NRP : 051117400000103
    Kelas : PBO-A
    Link : Tugas

    ReplyDelete
  54. Nama : Mohammad Rizaldi Huzein Prastomo
    NRP : 05111740000024
    Kelas : PBO B
    Link : Link

    ReplyDelete
  55. Nama : Wasilatul Dewi Ningrum
    NRP : 05111740000004
    Kelas : PBO B
    Link : image viewer

    ReplyDelete
  56. Nama : M Thalut Nadhil Q
    NRP : 05111740000143
    Kelas : PBO B
    Link : ImageViewer

    ReplyDelete
  57. Nama : Haikal Almaz Said
    NRP : 05111740000068
    Kelas : PBO A
    Link : Image Viewer 1.0

    ReplyDelete
  58. Nama : Budiman Akbar Radhiansyah
    NRP : 05111740000179
    Kelas : PBO A
    Link : Link Image Viewer 1.0

    ReplyDelete
  59. Nama: Arino Jenynof
    NRP: 05111740000096
    Kelas: PBO B
    Link: Image Viewer

    ReplyDelete
  60. Nama: Mohammad Nafis Naufally
    NRP: 05111640000038
    Kelas: PBO B
    Link: Image Viewer V3

    ReplyDelete

  61. Nama :Hafidz Firman Asqalany
    NRP : 05111740000195
    Kelas: PBO A
    Link :ImageViewer version 1.0

    ReplyDelete
  62. Nama : Ismail Arifin
    NRP : 05111740007007
    Kelas : PBO B
    Link : ImageViewer

    ReplyDelete

  63. Nama :Hafidz Firman Asqalany
    NRP : 05111740000195
    Kelas: PBO A
    Link :ImageViewer version 2.0

    ReplyDelete
  64. Nama :Chrisnady Anggaiswara
    NRP : 05111640000153
    Kelas: PBO B
    Link :Image Viewer v3.0

    ReplyDelete
  65. Nama: I Gede Agung Krisna Pamungkas
    NRP: 05111740000135
    Kelas: PBO A
    Link: GUI

    ReplyDelete
  66. This comment has been removed by the author.

    ReplyDelete
  67. Nama : Hendra Ramadani
    NRP : 05111740000055
    Kelas : PBO-B
    Link : Image Viewer 3.0

    ReplyDelete
  68. This comment has been removed by the author.

    ReplyDelete
  69. Nama : Putri Endah Puspitasari
    NRP : 05111740000039
    Kelas: PBO - B
    Link : PR Image Viewer with Filter

    ReplyDelete
  70. Nama : Isnaini Nurul KurniaSari
    NRP : 05111740000010
    Kelas: PBO-B
    Link : Tugas Rumah Image Viewer with Filter

    ReplyDelete
  71. Nama : Yuki Yanuar Ratna
    NRP : 05111740000023
    Kelas : PBO A
    Link : Image Viewer With Filter

    ReplyDelete
  72. Nama : Shawn Timothy Mulya Putra
    NRP : 05111740000095
    Kelas: PBO-A
    Link : Jawaban

    ReplyDelete
  73. This comment has been removed by the author.

    ReplyDelete
  74. Nama : Yemima Sutanto
    NRP : 05111740000049
    Kelas : PBO A
    LINK : Image Viewer GUI 1.0

    ReplyDelete
  75. Nama: I Gede Agung Krisna Pamungkas
    NRP: 05111740000135
    Kelas: PBO A
    Link: Image Viewer GUI 3.0

    ReplyDelete
  76. This comment has been removed by the author.

    ReplyDelete
  77. Nama : Atika Rizki Nurakhmah
    NRP : 05111740000015
    Kelas : PBO - A
    link : Image Viewer 2.0

    ReplyDelete
  78. Nama : Yemima Sutanto
    NRP : 05111740000049
    Kelas : PBO A
    LINK : Image Viewer GUI 3.0

    ReplyDelete
  79. Nama : Bobbi Aditya
    NRP : 05111740000099
    Kelas : PBO A
    Link : ini linknya

    ReplyDelete
  80. Nama : Samuel Marcellinus
    NRP : 05111740000134
    Kelas : PBO A
    Link : Link ImageViewer

    ReplyDelete
  81. Nama : Ifta Jihan N
    NRP : 05111740000034
    Kelas : PBO A
    Link : Image Viewer 3.0

    ReplyDelete
  82. Nama : Nitama Nurlingga Yotifa
    NRP : 05111740000059
    Kelas : PBO A
    Link : Image Viewer 3.0

    ReplyDelete
  83. Nama : Bastian Farandy
    NRP : 05111740000190
    Kelas : PBO A
    Link : ImageViewer 3.0

    ReplyDelete
  84. Nama : Reza Adipatria Maranatha
    NRP : 05111740000186
    Kelas : PBO A
    Link : ImageViewer 3.0

    ReplyDelete
  85. Nama : Lutfiyanti
    NRP : 05111740000036
    Kelas : PBO B
    Link : ImageViewer

    ReplyDelete
  86. Nama : Arini Puspitasari
    NRP : 05111740000040
    Kelas: PBO B
    Link : Image Viewer 3.0

    ReplyDelete
  87. Nama : Yudhistiro Adi Nugroho
    NRP : 05111740000165
    Kelas: PBO A
    Link : ImageViewer V3.0

    ReplyDelete
  88. Nama : Annas Nuril Iman
    NRP : 05111740000042
    Kelas: PBO-B
    Link : Image Viewer v3.0

    ReplyDelete
  89. Nama : Ahmad Syauqi
    NRP : 05111740000093
    Kelas: PBO-B
    Link : Image Viewer v3.0

    ReplyDelete
  90. Nama : Zahrul Zizki D
    NRP : 05111740000168
    Kelas: PBO-B
    Link : Image Viewer dengan filter

    ReplyDelete
  91. Nama: Indira Nursyamsina Hazimi
    NRP: 05111740000082
    Kelas: PBO A
    Link: ImageViewer3.0

    ReplyDelete
  92. Nama : Mohammad Rizaldi Huzein Prastomo
    NRP : 05111740000024
    Kelas : PBO-B
    Link : Link ImageViewer 3.0

    ReplyDelete
  93. Nama : Ismail Arifin
    NRP : 05111740007007
    Kelas : PBO B
    Link : Image Viewer 3.0

    ReplyDelete
  94. Nama : Yasinta Yusniawati
    NRP : 05111740000054
    Kelas : PBO-B
    Link : Imange Viewer 3.0

    ReplyDelete
  95. Nama : Nandha Himawan
    Kelas : PBO A
    NRP : 05111740000180
    Link : image viewer v1.0

    ReplyDelete
  96. Nama : Nandha Himawan
    Kelas : PBO A
    NRP : 05111740000180
    Link : Image viewer v3.0

    ReplyDelete
  97. Nama: Zico Ritonda Bahen
    NRP: 05111740000064
    Kelas: PBO A
    Link: Tugas ImageViewer 1.0

    ReplyDelete
  98. Nama: Zico Ritonda Bahen
    NRP: 05111740000064
    Kelas: PBO A
    Link: Tugas ImageViewer 3.0

    ReplyDelete
  99. Nama: Bima S. Ramadhan
    NRP: 05111740000081
    Kelas: PBO A
    Link: click

    ReplyDelete
  100. Nama: Satria Ade Veda Karuniawan
    NRP: 05111740000130
    Kelas: PBO A
    Link: ImageViewer 3.0

    ReplyDelete
  101. Nama: Arino Jenynof
    NRP: 05111740000096
    Kelas: PBO B
    Link: Image Viewer 3.0

    ReplyDelete
  102. Nama: Vinsensius Yuda P
    NRP: 05111740000156
    Kelas: PBO B
    Link :Image Viewer v3

    ReplyDelete
  103. Nama: Donny Fitrado
    NRP: 05111740000171
    Kelas: PBO A
    Link: ImageViewer 3.0

    ReplyDelete
  104. Nama: Haikal Almaz Said
    NRP: 05111740000068
    Kelas: PBO A
    Link: Image Viewer 3.0

    ReplyDelete
  105. Nama: Elkana Hans Widersen
    NRP:05111740000127
    Kelas: PBO A
    Link: Image Viewer 3.0

    ReplyDelete
  106. Nama : M Thalut Nadhil Q
    NRP : 05111740000143
    Kelas : PBO B
    Link : ImageViewer3.0

    ReplyDelete
  107. Nama : Budiman Akbar Radhiansyah
    NRP : 05111740000179
    Kelas : PBO A
    Link : Link Image Viewer 3.0

    ReplyDelete
  108. Nama : Puguh Santosa D
    NRP : 5116100049
    Kelas : PBO - A
    LINK : Image Viewer

    ReplyDelete
  109. Nama : Ahmad Yahya Abdul Aziz
    NRP : 05111740000128
    Kelas : PBO - A
    Link : Image Viewer v1.0

    ReplyDelete
  110. Nama : Muhammad Husni Ridhart Azzikry
    NRP : 05111740000122
    Kelas: PBO - B
    Link : Image Viewer

    ReplyDelete
  111. Nama : Fadhlan Aulia
    NRP : 05111640000125
    Kelas : PBO - B
    Link : Image viewer

    ReplyDelete
  112. Nama: Ayu Mutiara Sari
    NRP: 05111740000149
    Kelas: PBO A
    Link: Link

    ReplyDelete
  113. Nama: Muhammad Naufal Refadi
    NRP: 05111740000097
    Kelas: PBO A
    Link: Link

    ReplyDelete
  114. Nama : Edgar Andrew Hutauruk
    NRP : 05111740000166
    Kelas : PBO B
    Link : Disini

    ReplyDelete
  115. Nama : Fachry Amir
    NRP : 05111740000084
    Kelas : PBO B
    Link : Image Viewer

    ReplyDelete
  116. Nama : I Gusti Agung Chintya Prema Dewi
    NRP :0511184000130
    Kelas : PBO D
    Link : Image Viewer

    ReplyDelete
  117. Nama : Alberto Sanjaya
    NRP : 05111840000150
    Kelas : PBO D
    Link : Latihan Image Viewer

    ReplyDelete
  118. Nama : Aflakah Nur Farhana
    NRP : 05111840000120
    Kelas : PBO D
    Link : link

    ReplyDelete
  119. Nama : Rafif Ridho
    NRP : 05111840000058
    Kelas : PBO D
    Link : Image Viewer

    ReplyDelete
  120. Nama : Muhammad Satryo Pamungkas Bimasakti
    NRP : 05111840000070
    Kelas : PBO D
    Link : ImageViewer

    ReplyDelete
  121. Nama : Yulia Niza
    NRP : 05111840000053
    Kelas : PBO A
    Link : Tugas GUI

    ReplyDelete
  122. This comment has been removed by the author.

    ReplyDelete
  123. NamaL Julius
    NRP: 05111840000082
    Kelas PBO A
    Link: Login dan ImageViewer

    ReplyDelete
  124. Nama : Putu Putri Natih Devayanti
    NRP : 05111840000163
    Kelas : PBO-A
    Link Tugas 1 (Log in Panel) : Tugas Login
    Link Tugas 2 (Image Viewer) : Tugas Image Viewer

    ReplyDelete
  125. Nama : Devi Hainun Pasya
    NRP : 05111840000014
    Kelas : PBO A
    LINK : Tugas Login dan Image Viewer

    ReplyDelete
  126. Nama : Dicky Maulana Rozi
    NRP : 05111740000083
    Kelas : PBO A
    Link : Tugas

    ReplyDelete
  127. Nama : Vania Meilani Taqiyyah
    NRP : 05111840000045
    Kelas : PBO D
    Tugas Link :
    IV

    ReplyDelete
  128. Nama: Iqbaal Pratama Putra
    NRP: 05111840000021
    Kelas: PBO D
    Link: Tugas 6

    ReplyDelete
  129. Nama: Intan Kusuma R
    Kelas: PBO D
    NRP: 05111840000020
    Link:
    Link GUI

    ReplyDelete
  130. Nama: Yaniar Pradityas Effendi
    Kelas: PBO D
    NRP: 05111840000047
    ImageViewer GUI

    ReplyDelete
  131. Nama : Fara Dinda Mutia Kinanggit
    Kelas : PBO D
    NRP : 05111840000112
    Link : Tugas 6

    ReplyDelete
  132. Nama : Risky Aswi Narni
    Kelas: PBO A
    NRP : 05111740000014
    Link : LoginDanImageViewer

    ReplyDelete
  133. Nama : Naulia Adam Kuncoro
    Kelas : PBO A
    NRP : 05111740000155
    Link : tugasLogIndanImageViewer

    ReplyDelete
  134. Nama : Elvira Catrine Natalie
    Kelas : PBO-A
    NRP : 05111840000016
    LINK
    Tugas 1 : LOGIN
    Tugas 2 : IMAGEVIEWER

    ReplyDelete
  135. Nama : Muhammad Fawwaz Zuhdan Nauvali
    Kelas : PBO-A
    NRP : 05111740000106
    Link Tugas 1 : Login
    Link Tugas 2 : Image Viewer

    ReplyDelete
  136. Nama : Adam Abelard Garibaldi
    Kelas : PBO A
    NRP : 05111840000125
    Link:
    Login View
    Image Viewer

    ReplyDelete
  137. Nama : I Nyoman Yoga Mahottama
    Kelas : PBO-A
    NRP : 05111740000149
    Link Tugas 1 : Login Panel
    Link Tugas 2 : Image Viewer

    ReplyDelete
  138. Nama : Nikodemus Siahaan
    Kelas :PBO-A
    NRP : 05111840000151
    LINK: Login Panel dan Image Viewer

    ReplyDelete
  139. Nama: Abdul Rozak Baharudin
    NRP: 05111840000148
    Kelas: PBO D
    Link: ImageViewer

    ReplyDelete
  140. Nama: Ignatius Dwiki Iskandar
    NRP: 05111840000019
    Kelas: PBO D
    Link: Image Viewer

    ReplyDelete
  141. Nama : Abdi Dewa Maha Rupawan
    NRP : 05111840000003
    Kelas : PBO-D
    Link : Image Viewer

    ReplyDelete
  142. Nama : Ivan Abdillah Rahman
    Kelas : PBO-A
    NRP : 05111840000137
    Link : Login Panel
    Program Image Viewer

    ReplyDelete
  143. Nama : Farrel Muhammad Taqi
    Kelas : PBO A
    NRP : 05111840000071
    Link : Tugas

    ReplyDelete
  144. Nama : Abdi Dewa Maha Rupawan
    NRP : 05111840000003
    Kelas : PBO-D
    Link :Link tugas

    ReplyDelete
  145. Nama : Salsabila Harlen
    NRP : 05111840000127
    Kelas : PBO-A
    Link : Link tugas

    ReplyDelete
  146. Nama : Wardah Nabilah Rusyda
    NRP : 05111840000046
    Kelas : PBO D
    Link : Tugas 6

    ReplyDelete
  147. Nama : Segara Bhagas Dagsapurwa
    NRP : 05111840000037
    Kelas : PBO D
    Link Tugas

    ReplyDelete
  148. Nama : Arjun Aksan
    NRP : 05111740000133
    Kelas : PBO A
    Link : Image Viewer

    Login Panel

    ReplyDelete
  149. Nama : Muhammad Rayhan Hakim
    NRP : 05111740000160
    Kelas : PBO A
    Link : https://gipenhakim.blogspot.com/2019/11/login-dan-image-viewer.html

    ReplyDelete
  150. Nama : iMANUEL BANIFERNANDO SIMATUPANG
    NRP : 05111740000085
    Kelas : PBO D
    Link : image viewer

    ReplyDelete
  151. Nama: Bayu Surya Bawono
    NRP: 05111840000114
    Kelas: PBO-A
    Link: https://etspbo.blogspot.com/2019/11/imageviewer.html

    ReplyDelete
  152. Nama : Ida Bagus Rai Widnyana
    NRP : 05111740000087
    Kelas: PBO-D
    Link :Image Viewer

    ReplyDelete
  153. Nama : Ryan Rasyid A
    Kelas : PBO D
    NRP : 05111840000079
    Link : Link?

    ReplyDelete
  154. Nama : Achmad Sofyan Pratama
    Kelas : PBO D
    NRP : 05111840000061
    LINK : Image Viewer

    ReplyDelete
  155. Nama : Ammar Alifian F
    Kelas : PBO A
    NRP : 05111840000007
    Link : Image Viewer

    ReplyDelete
  156. Nama : Aufi Fillah
    NRP : 05111940000148
    Kelas : PBO-A
    Link : ImageViewer

    ReplyDelete
  157. Nama : Junaedi Akbar
    Nrp : 05111940000041
    Kelas: PBO A
    Link : Tugas Image Viewer

    ReplyDelete
  158. Nama : Zelda Elma Sibuea
    NRP : 05111940000038
    Kelas: PBO A
    Link : Tugas 6 PBO Image Viewer

    ReplyDelete
  159. Nama : Dewi Mardani C.
    NRP : 05111940000225
    Kelas : PBO-A
    Link : Tugas ImageViewer

    ReplyDelete
  160. Nama : Fitrah Arie Ramadhan
    NRP : 05111940000025
    Kelas : PBO B
    Link : Login Sistem dan Image Viewer

    ReplyDelete
  161. Nama : Fitrah Mutiara
    Kelas : PBO B
    NRP : 05111940000126
    Link Tugas : Login Panel dan Image Viewer

    ReplyDelete
  162. Nama : Raharja Dui Putra Sutedjo
    Kelas : PBO B
    NRP : 05111940000222
    Link Tugas :
    Aplikasi Login Panel
    Aplikasi Image Viewer

    ReplyDelete
  163. Nama : Thomas Felix Brilliant
    NRP : 05111940000062
    Kelas : PBO (B)

    Link tugas: Tugas 7 Pemrograman Berorientasi Objek - Login Panel & Image Viewer

    ReplyDelete
  164. Nama : Muthia Qurrota Akyun
    NRP : 05111940000019
    Kelas : PBO B
    Link : Tugas 7 Login Panel dan Image Viewer

    ReplyDelete
  165. Nama : Daffa Muhamad Azhar
    NRP : 05111940000037
    Kelas : PBO B
    Link Tugas 7 : Login Panel dan Image Viewer

    ReplyDelete
  166. Nama: Muhammad Naufaldillah
    NRP: 05111940000202
    Kelas: PBO B
    Link Tugas 7: Tugas Login Panel dan Tugas Image Viewer

    ReplyDelete
  167. Nama : Arkan Aulia Farhan
    NRP : 05111940000128
    Kelas : PBO B
    Link Tugas 7 : Login Panel & Image Viewer

    ReplyDelete
  168. Nama : Dido Fabian Fayed
    NRP : 05111940000059
    Kelas : PBO B
    Link Tugas 7 : GUI Login dan Image Viewer

    ReplyDelete
  169. This comment has been removed by the author.

    ReplyDelete
  170. Nama : Aji Rindra Fakhrezi Putra Faisal
    NRP : 05111940000205
    Kelas : PBO B
    Link Tugas 7 : Login Panel dan Image Viewer

    ReplyDelete
  171. Nama : Albert Filip Silalahi
    NRP : 05111940000116
    Kelas : PBO C
    Link : ImageViewer

    ReplyDelete
  172. Nama : Ghifari Astaudi Ukumullah
    Kelas : PBO B
    NRP : 05111940000012
    Link Login Panel : https://ghifariastaudiu.blogspot.com/2020/12/tugas-pbo-7_7.html
    Link Image Viewer : https://ghifariastaudiu.blogspot.com/2020/12/tugas-pbo-7.html

    ReplyDelete
  173. Nama : Mohammad Thoriq Huda
    Kelas : PBO B
    NRP : 05111940000207
    Link : Login Panel dan Image Viewer

    ReplyDelete
  174. This comment has been removed by the author.

    ReplyDelete
  175. Nama : Fuad Elhasan Irfani
    Kelas : PBO C
    NRP : 05111940000095
    Link : Image Viewer

    ReplyDelete
  176. Nama : Ivan Muhammad Nizar
    NRP : 05111940000052
    Kelas : PBO B
    Link :
    -Log In: https://ivannizar0.blogspot.com/2020/12/tugas-7-pbo-login.html
    -Image Viewer: https://ivannizar0.blogspot.com/2020/12/tugas-7-pbo-image-viewer.html

    ReplyDelete
  177. Nama : Muhammad Izzuddin A
    NRP : 05111740000035
    Kelas : PBO B
    Link : Login Interface dan Image Viewer

    ReplyDelete
  178. Nama : Muhammad Haikal Aria Sakti
    Kelas : PBO B
    NRP : 05111940000088
    Link Login Panel : https://sakti0088.blogspot.com/2020/12/tugas-pbo-b-login-panel.html
    Link Image Viewer : https://sakti0088.blogspot.com/2020/12/tugas-pbo-b-image-viewer.html

    ReplyDelete
  179. Nama : Dwinanda Bagoes Ansori
    Kelas PBO B
    NRP : 05111940000010
    Tugas : Login Panel dan Image Viewer
    Link :
    Link Login Panel
    Link Image Viewer

    ReplyDelete
  180. Nama : Kelvin Andersen
    Kelas : PBO B
    NRP : 05111940000080
    Link:
    Login Panel https://kelvinandersen.blogspot.com/2020/12/aplikasi-login-panel.html
    Image Viewer https://kelvinandersen.blogspot.com/2020/12/program-image-viewer.html

    ReplyDelete
  181. Nama : Fiodhy Ardito Narawangsa
    Kelas : PBO B
    NRP : 05111940000218
    Tugas : Login Panel dan Image Viewer

    ReplyDelete
  182. Nama : M.Fajri Davyza Chaniago
    NRP : 05111940000180
    Kelas : PBO B
    Tugas : 1. https://mfajridc.blogspot.com/2020/12/tugas-7-pemograman-berorentasi-object.html

    2. https://mfajridc.blogspot.com/2020/12/7-pemograman-beroentasi-object-image.html

    ReplyDelete
  183. Nama : David Ralphwaldo Martuaraja
    NRP : 05111940000190
    Kelas : PBO B
    Tugas : Tugas Login Panel dan Tugas Image Viewer

    ReplyDelete
  184. Nama : Muhammad Farhan Haykal
    NRP : 0511940000141
    Kelas : PBO B
    Tugas :
    Login Panel
    Image Viewer

    ReplyDelete
  185. Nama : Thomas Dwi Awaka
    NRP : 05111940000021
    Kelas PBO A
    Tugas
    Image Viewer

    ReplyDelete
  186. Nama : Ricky Supriyanto
    NRP: 05111940000036
    Kelas PBO A
    Tugas : Tugas Image Viewer

    ReplyDelete
  187. Nama : Mohammad Tauchid
    NRP : 05111940000136
    Kelas : PBO B
    Tugas : Login Panel dan Image Viewer

    ReplyDelete
  188. Nama: Faisal Reza Maulana
    NRP: 05111940000009
    Kelas: PBO B
    Tugas: Login dan Image Viewer

    ReplyDelete
  189. Nama : Aimar Wibowo
    NRP : 05111940000034
    Kelas : PBO C
    Link Tugas : Image Viewer

    ReplyDelete
  190. Nama : Muhammad Bagus Istighfar
    NRP : 05111940000049
    Kelas : PBO-C
    Link : Tugas Image Viewer

    ReplyDelete
  191. Nama : Dewangga Dharmawan
    NRP : 05111940000029
    Kelas : PBO C
    Tugas : Link Tugas

    ReplyDelete
  192. Nama : Maximilian H M Lingga
    NRP : 05111940000092
    Kelas : PBO C
    Tugas : https://maxlingga2001.blogspot.com/2020/12/membuat-image-viewer.html

    ReplyDelete
  193. Nama : Ramadhan Arif Hardijansyah
    NRP : 05111940000162
    Kelas : PBO C
    Tugas : Link Tugas

    ReplyDelete
  194. Nama : Inez Yulia Amanda
    NRP : 05111940000208
    Kelas : PBO A
    Tugas : Image Viewer

    ReplyDelete