
Source Code :
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class MessageDialog extends JFrame { private JButton tombol, btn2, btn3, btn4, btn5; public MessageDialog() { super ("Event Handling"); Container container = getContentPane(); container.setLayout(new FlowLayout()); tombol = new JButton ("Message Dialog"); tombol.addActionListener( new ActionListener() { public void actionPerformed (ActionEvent e) { JOptionPane.showMessageDialog (null,"Contoh Message Dialog"); } } ); container.add(tombol); btn2 = new JButton ("Warning Message"); btn2.addActionListener( new ActionListener() { public void actionPerformed (ActionEvent e) { JOptionPane.showConfirmDialog(null, "Contoh Warning Message","Peringatan", JOptionPane.CLOSED_OPTION, JOptionPane.WARNING_MESSAGE); } } ); container.add(btn2); btn3 = new JButton ("Question Message"); btn3.addActionListener( new ActionListener() { public void actionPerformed (ActionEvent e) { JOptionPane.showConfirmDialog(null, "Contoh Question Message","Pertanyaan", JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE); } } ); container.add(btn3); btn4 = new JButton ("Information Message"); btn4.addActionListener( new ActionListener() { public void actionPerformed (ActionEvent e) { JOptionPane.showConfirmDialog(null, "Contoh Information Message","Informasi", JOptionPane.NO_OPTION, JOptionPane.INFORMATION_MESSAGE); } } ); container.add(btn4); btn5 = new JButton ("Input Dialog"); btn5.addActionListener( new ActionListener() { public void actionPerformed (ActionEvent e) { String a = JOptionPane.showInputDialog("Input Nama : "); JOptionPane.showMessageDialog(null, a); } } ); container.add(btn5); setSize (200,300); setLocationRelativeTo(null); setVisible (true); } public static void main (String arg[]) { MessageDialog test = new MessageDialog(); test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } } |
Berikut ini tampilannya:
Artikel Terkait:
Pemrograman Java
Belajar Pemrograman
- Macromedia Dreamweaver
- Seagate Crystal Report 8.5
- Membuat Kalender Jawa dengan VB6
- Konversi file dbf ke mysql
- Web Professional dengan Photoshop & Dreamweave
- Object Oriented Programming dalam Visual Basic 2005
- Tutorial Pemrograman sederhana Visual Basic
- Akses Database Menggunakan Java
- Membuat Form Login Sederhana di Java
Dunia IT
- Pengolahan Citra Digital Part 1
- Macromedia Dreamweaver
- Seagate Crystal Report 8.5
- Smadav Pro Terbaru 2012 Full Serial Key
- SQL Server 2000 Personal Edition
- Download Gratis Cisco Packet Tracer Version 5.2
- Membuat Kalender Jawa dengan VB6
- Download Gratis Artisteer 2.3
- Konversi file dbf ke mysql
- Object Oriented Programming dalam Visual Basic 2005
0 komentar:
Post a Comment