Lost Using Swing Components(3)

Lost Using Swing Components(3)

Hello, I sound like every other newbie but I desperately need help. I have to write an application for the WebBuy Company that allows a user to compose the three parts of a complete email message: the "To", "Subject", and "Message:" text. The "To" and "Subject:" text areas should provide a single line for data entry. The "Message:" area should allow multiple lines of input and be able to scroll if necessary to accommodate a long message. The user clicks a button to send the email message. When the message is complete and the a send button is clicked, the application displays "Mail has been sent!" on a new line in the message area. I then save the files as JEmauil.java. This is what the code is that I have and it shows what I am missing. I would be indebted if someone could help me:

//Insert missing code here.
import java.awt.*;
import java.awt.event.*;

public class JEMail extends JFrame implements ActionListener
{
    //Insert missing code here.
    private JTextField toField = new JTextField(24);
    private JLabel subjectLabel = new JLabel("Subject:");
    private JTextField subjectField = new JTextField(24);
    //Insert missing code here.
    private JButton sendButton = new JButton("Send");
    private JTextArea message = new JTextArea(4, 22);

    public JEMail()
    {
        super("WebBuy Company E-Mail");
        setSize(370, 270);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container pane = getContentPane();
        FlowLayout flow = new FlowLayout(FlowLayout.RIGHT);
        pane.setLayout(flow);
    //Insert missing code here.
        panel1.add(toLabel);
    //Insert missing code here.
        pane.add(panel1);
        JPanel panel2 = new JPanel();
        panel2.add(subjectLabel);
        panel2.add(subjectField);
    //Insert missing code here.
        JPanel panel3 = new JPanel();
        panel3.add(messageLabel);
        message.setLineWrap(true);
        message.setWrapStyleWord(true);
        JScrollPane scroll = new JScrollPane(message,
           JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
           JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        panel3.add(scroll);
    //Insert missing code here.
        JPanel panel4 = new JPanel();
        panel4.add(sendButton);
        pane.add(panel4);
        sendButton.addActionListener(this);
    //Insert missing code here.
    }

    public static void main(String[] arguments)
    {
        JEMail email = new JEMail();
    //Insert missing code here.
    }
    public void actionPerformed(ActionEvent event)
    {
      Object source = event.getSource();
      if (source == sendButton)
        message.append("\nMail has been sent!");
    }
}
View Answers

December 13, 2010 at 1:13 PM

Hi Friend,

Visit Here

Thanks









Related Tutorials/Questions & Answers:
Lost Using Swing Components(3)
Lost Using Swing Components(3)  Hello, I sound like every other newbie but I desperately need help. I have to write an application for the WebBuy Company that allows a user to compose the three parts of a complete email message
Lost Using Swing Components
Lost Using Swing Components  Hello, I sound like every other newbie but I desperately need help. I have to write an application for the WebBuy... be indebted if someone would help me out as I am lost: //Insert missing code here
Advertisements
Lost Using Swing Components
Lost Using Swing Components  Hello, I sound like every other newbie but I desperately need help. I have to write an application for the WebBuy Company that allows a user to compose the three parts of a complete email message
Lost Using Swing Components
Lost Using Swing Components  Hello, I sound like every other newbie but I desperately need help. I have to write an application for the WebBuy Company that allows a user to compose the three parts of a complete email message
Lost Using Swing Components(2)
Lost Using Swing Components(2)  Here is the code block corrected: //Insert missing code here. import java.awt.*; import java.awt.event.*; public class JEMail extends JFrame implements ActionListener { //Insert missing code
JFrame Components Printing - Swing AWT
JFrame Components Printing  hi sir i am doing a project so i am working in netbeans i have to print a JFrame it contains Labels and few... link: http://www.roseindia.net/java/example/java/swing/Print.shtml Hope
JFrame Components Printing - Swing AWT
PrintExample() { super("Printing Swing Components...JFrame Components Printing  hi sir thanks a lot for your reply.../example/java/swing/Print.shtml and downloaded the codes and compiled it got
JFrame components printing - Swing AWT
Swing Components"); WindowShow.setNativeLookAndFeel(); Container content...JFrame components printing  hi sir thanks a lot for your reply.../example/java/swing/Print.shtml and downloaded the codes and compiled it got
JFrame components printing - Swing AWT
Swing Components"); WindowShow.setNativeLookAndFeel(); Container content...JFrame components printing  hi sir thanks a lot for your reply.../example/java/swing/Print.shtml and downloaded the codes and compiled it got
Display Logo on login form using swing
Display Logo on login form using swing In this tutorial, you will learn how to display a logo in login form using swing components. Here is an example where... file from the system and using setIcon() method, the image as a logo will get
Chapter 3. Develop clients that access the enterprise components
; Chapter 3. Develop clients that access the enterprise components... Chapter 3. Develop clients that access the enterprise...) { if (args.length < 3) { System.out.println("Define firstName, lastName
Flex custom components
Custom Flex Components: In the Flex 3 development, User can create custom components using mxml or ActionScript. In this example user can see mxml custom component. The purpose to create custom components in the Flex application
creation of table using a Java swing
creation of table using a Java swing  how to create a table dynamically in Java swing
Using swing - Java Beginners
Using swing  How can one use inheritance and polymophism while developing GUI of this question. Develop an application that allows a student to open an account. The account may be a savings account or a current account
Reading .doc file using swing
Reading .doc file using swing  Sir, Could U Please Tell me the Way To Read .doc file in java using swing,with code
swing components are not running in my system what to do now??
swing components are not running in my system what to do now??  Exception in thread "main" java.lang.ExceptionInInitializerError...) ... 3 more this type of error coming what to do
how to give validation using javascript in swing
how to give validation using javascript in swing   how to give validation using javascript in swing....... can somebody give code for username and password validation using javscript and swing
3 dropdown list from the database using JSP
3 dropdown list from the database using JSP  Hi, I'm new to JSP I want to create 3 dropdown list each depend on the other and get the options from the database using JSP
greatest of 3 numbers using classes and functions.
greatest of 3 numbers using classes and functions.  WAP to calculate greatest of 3 numbers using classes and functions with parameters through input..._VALUE; System.out.println("Enter 3 numbers:"); Scanner input
Editing UI components using managed bean
Editing UI components using managed bean  Hello friends... I want to edit the properties of a inputText on JSP page using its managed bean. I have a simple inoutText and commandButton on jsp page and on click of button, i want
Insert into table using Java Swing
INSERTION IN TABLE USING SWING In this section, We will insert rows into "Mysql" database using "Swing". What is Swing? Swing is the extension to the Awt library, includes new and improved components
how to set image in button using swing? - Swing AWT
how to set image in button using swing?  how to set the image in button using swing?  Hi friend, import java.awt.*; import...);}}); } } For more information on Swing visit to : http
how to create a header in jtable using java swing
how to create a header in jtable using java swing  how to create a header in jtable using java swing   d
How to Hide Button using Java Swing
Programming application how to hide the buttons using Java Swing. Please Visit this below reference link http://www.roseindia.net/tutorial/java/swing...How to Hide Button using Java Swing  Hi, I just begin to learn java
Import object in Excel using java swing
Import object in Excel using java swing  Hi sir, I want to make a swing application where I can import a object by clicking a button. I am using...;browse (this browse path I want to give inside the swing code) Tick 'display as icon
Sum of a Number using Swing
Sum of a Number using Swing       In this section, you will learn how to sum of a number using swing...;Calculate.java" to sum of a number using Swing
3
to this output stream using the specified format string and arguments
Navigate Data using Java Swing
Navigate Data using Java Swing In this java tutorial section, you will learn how to navigate the Database data using Java Swing. For this, we have created a form with four buttons to perform an action. Through these buttons, we have
Spring MVC and Hibernate with DWR 3 -- Configuration Using MySQL Database
Spring MVC and Hibernate with DWR 3 -- Configuration Using MySQL Database  How to configure Spring MVC and Hibernate with DWR 3, Simple example -- reading a table, editing-deleting and adding new rows
insert data into mysql databse using swing
insert data into mysql databse using swing   Blockquote hi, here...",Font.BOLD,20)); Border border = BorderFactory.createLineBorder(Color.red,3..."); box2.addItem("3"); box2.addItem("4"); box2.addItem("5"); box2.addItem("6
compareing images using java - Swing AWT
compareing images using java  hi can u please give me the code in java to compare imges..i have the program to get the pixel values using pixel... with another image,i.e,program to compare two images using the pixel values.. thank
Linking excel file with a application tool using swing
Linking excel file with a application tool using swing  I have to link an excel file with my application software using java swing.As soon as i click on the link button a window should open for selecting the excel file(just like
How to create Multiple Frames using Java Swing
Multiple Frames in Java Swing In this section, you will learn how to create multiple frames. Java Swing provides the utility to show frame within another frame by providing the class JInternalFrame. With the use of this class, you can
SWING
SWING  A JAVA CODE OF MOVING TRAIN IN SWING
create, edit ,open simple documents using java - Swing AWT
create, edit ,open simple documents using java   In my program I have a text area.How to create document which will contain text in text... want to use Java Swing or JSP? Do you want to create word document file
Creating Custom Components using JSF
JSF contains its basic set of UI components and provides an easy way of creating custom components of your own according to the need of the application. Components in JSF are elements like text box, button, table etc. that are used
Which one is better for creating a GUI using swings either Manual coding or IDE(NetBeans,eclipse)..? drag and dropping components
Which one is better for creating a GUI using swings either Manual coding or IDE... in java application developing.... Which one is better for creating a GUI using swings either Manual coding or IDE(NetBeans,eclipse)..? drag and dropping components
automatically resend when connection lost in sending email
automatically resend when connection lost in sending email  send automatically email when connection lost in sending bulk email using javamail for exp more than 10000 emails
automatically resend when connection lost in sending email
automatically resend when connection lost in sending email  send automatically email when connection lost in sending bulk email using javamail for exp more than 10000 emails
automatically resend when connection lost in sending email
automatically resend when connection lost in sending email  send automatically email when connection lost in sending bulk email using javamail for exp more than 10000 emails
swing
swing  Write a java swing program to delete a selected record from a table
swing
swing  How to make swing component auto-resizable when JFrame resize
create , edit MS WORD like document file using Java Swing - Swing AWT
? I am using Java SWING. Plz. email your answer...create , edit MS WORD like document file using Java Swing   In my program I have JTextArea. Text in JTextArea can be set to selected font
Create Layout Components in a Grid in Java
layout components with the help of grid in Java Swing. The grid layout provides the facility to arrange some created GUI components for the frame. The grid... Create Layout Components in a Grid in Java   
What is Java Swing?
and GUIs components. All Java Swing classes imports form the import... etc. JComponent In java swing, All components are used... It has JFC/Swing container that can be used to overlap the components
Components
Components in Flex4 is the simple extension of the components of Flex3. In this section, you will learns different types of spark components to be used in Flex4. Here is the list of spark components
GPS Lost Mobile Phone Tracking Services
mobile handset. For using our GPS based lost mobile tracking service, you must...GPS Lost Mobile Phone Tracking Services Now a day?s mobile phones are not only..._TO_REPLACE_1 Our subscription charges are very low while our GPS Lost Mobile
ModuleNotFoundError: No module named 'lost-years'
ModuleNotFoundError: No module named 'lost-years'  Hi, My Python... 'lost-years' How to remove the ModuleNotFoundError: No module named 'lost... have to install padas library. You can install lost-years python
steps to create desktop application in java swing using eclipse with drag and drop options
steps to create desktop application in java swing using eclipse with drag and drop options  please help to create desktop application in java swing using eclipse with drag and drop and what are the plugins required
Swing
Swing  Write a java swing program to search the details of the students. Searching is performed on studentā??s first name. The details of all those students having same name as in given in searching criterion will be displayed

Ads