Thursday, November 3, 2011

[JUG-Indonesia] Salam Kenal N Tanya dunk...

 

Selamat siang semua...

Salam kenal, saya Fakhri... Anak BOGOR...

Saya lagi belajar java, tapi kok ga bisa load gambar ya...

Listing belajar nya ini...

/**
* Nama File Main.java
* Program untuk menampilkan logo dan menjalankan ProgressBar
* Memanggil Program Menu Utama
* @author Yuniar Supardi,Ir.
* Aplikasi Perpustakaan
*/

package appperpus;

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.border.LineBorder;

public class Main extends JWindow {
private Dimension dimensi1 = Toolkit.getDefaultToolkit().getScreenSize();
private JLabel labelLogo1 = new JLabel(new ImageIcon ("gambar/appperpus.png"));
private JProgressBar barisProgres1= new JProgressBar();
private int time1 = 0;
private Timer timer1;

public Main ()
{
Color Warna = Color.blue;
barisProgres1.setValue(0);
barisProgres1.setPreferredSize(new Dimension(100,15));
barisProgres1.setBackground(Color.white);
barisProgres1.setForeground(Color.BLUE);
barisProgres1.setStringPainted(true);
barisProgres1.setBorder(new LineBorder (Warna, 1));
labelLogo1.setBorder (new LineBorder (Warna, 1));
getContentPane().add(labelLogo1, BorderLayout.NORTH);
getContentPane().add(barisProgres1,BorderLayout.CENTER);
timer1=new Timer(50,new ActionListener()
{
public void actionPerformed(ActionEvent evt)
{
time1++;
barisProgres1.setValue(time1);
if(barisProgres1.getPercentComplete()==1.0)
{
timer1.stop();
setVisible(false);
new MenuUtama();
}
}
});
timer1.start();
pack();
setLocation (dimensi1.width / 2 - getWidth() / 2, dimensi1.height / 2 - getHeight() / 2);
show();
}

public static void main (String args[]) {
new Main ();
}
}

Kok ga keluar ya... perlu bantuan nich....
Thanks ya...

__._,_.___
Recent Activity:
====
Jangan lupa untuk bergabung ke codeandroid-id@googlegroups.com, untuk diskusi fokus mengenai pengembangan aplikasi sekitar android. email pendaftaran ke codeandroid-id-subscribe@googlegroups.com.
Webnya http://www.codeandroid.or.id
===

Kalau mau keluar dari mailing list ini, caranya kirim sebuah email ke jug-indonesia-unsubscribe@yahoogroups.com.

Jangan lupa, website JUG Indonesia adalah http://www.jug.or.id

MARKETPLACE

Stay on top of your group activity without leaving the page you're on - Get the Yahoo! Toolbar now.

.

__,_._,___

No comments: