8 Mayıs 2014 Perşembe


ARKADAŞLAR BU HAFTA YARDIM MENÜSÜNE TIKLADIGIMIZDA BLOG ADRESİNE BAGLANMAKTADIR.





public JPanel initPanel() {

JPanel panel = new JPanel(new GridLayout(2,1,5,5));

JButton button=new JButton("Yardim");
       button.addActionListener(this);
       Container contentPane=getContentPane();
       contentPane.setLayout(new FlowLayout());
       contentPane.add(button);
       setBounds(200,200,200,200);
       setVisible(true);
     
           JLabel aciklama = new JLabel("Yönlendiriliyorsunuz...");
           panel.add(button);
           panel.add(aciklama);
   
Yardım Menüsüne tıkladıgımızda ibrahimdonmez.blogspot.com adresine baglanmayı gerçekleştirecektir




 
       try{
           Process p=Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\IEXPLORE.exe www.ibrahimdonmez.blogspot.com");
       }catch(IOException ex){
           ex.printStackTrace();
       }
 
     
     
return panel;
}

Hiç yorum yok:

Yorum Gönder