Home      |      About Us      |     Portfolio      |      Services      |      Courses      |     Career      |      Cost      |      Contact Us
Services
  SEO   
  Link Building
  Data Entry
  Web Design and development
  Web Application development
 

Graphic and multimedia

  E-Commerce Solutions
  Software development
  Web Marketing & Promoting
  Internet Marketing
  IT Outsourcing
  Multimedia/CD Presentation
  Synopsis Ideas
  Project Ideas
  Placement Papers
  Live Project Training
  Programming & Projects
  Faq
  Training @balujalabs
 
 
Method
 
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class YesNoDialog extends Dialog implements ActionListener {
private Button yes = new Button(“Yes”);
private Button no = new Button(“No”);
public YesNoDialog(Frame parent, String message) {
super(parent, true);
this.add(BorderLayout.CENTER, new Label(message));
Panel p = new Panel( );
p.setLayout(new FlowLayout( ));
yes.addActionListener(this);
p.add(yes);
no.addActionListener(this);
p.add(no);
this.add(BorderLayout.SOUTH, p);
this.setSize(300,100);
this.setLocation(100, 200);
this.pack( );
}
public void actionPerformed(ActionEvent evt) {
this.hide( );
this.dispose( );
}
}

The applet to put the text of each member item selected to put the text field.

 

 

 

 

 

 

 

 

 

                                                                                                                                          

1
2 To demonstrate border layout view.
3 Add checkbox, Textbox object in grid layout view.
4 To demonstrate Grid Bag Layout View
5 To produce a calculator applet using only a grid layout and nested panels.
6 To demonstrate manual layout.
7 To put up a window, that can be moved and resized. The window has a single text area component.
8 To display a simple non model dialog with an ok button and title box.
9 Centering a frame on the screen.
10 The applet to put the text of each member item selected to put the text field.