LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 03-24-2012, 09:21 PM   #1
zAxOanL
LQ Newbie
 
Registered: Mar 2012
Posts: 2

Rep: Reputation: Disabled
Unhappy JAVA text boxes does not show


hi guys. I am new to java and I have problems with my java codes. I have problem adding text box after each label ID Code, Weight, Rate, Price Charge, it does not show when i run the code. Also, I am trying to make the prceCharge field to display the amount with the dollar sign in the box, not sure if the code is right.

the ouput should be like this:

Fee Calculator
ID Code: [Text Box]
Weight: [Text Box]
Rate: [$1.02]
Price Charge: [$ ]

Code:
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*; //Needed for swing components 

public class PayrollApplication extends JFrame
implements ActionListener
{
//declare your instance objects here
JPanel mainPanel = new JPanel();
JLabel label1 = new JLabel("Fee Calculator");
JLabel IDcode = new JLabel("ID Code: ");
JLabel Weight = new JLabel ("Weight: ");
JLabel Rate = new JLabel ("Rate: ");
JLabel priceCharge = new JLabel ("Price Charge: ");
JTextField label1Field = new JTextField(20);
JTextField IDCodeField = new JTextField(20);
JTextField WeighttField = new JTextField(20);
JTextField RatetField = new JTextField(20);
JTextField PricetField = new JTextField(20);
JButton calculateButton = new JButton("Calculate Shipping Fee");
JTextArea outputTextArea = new JTextArea(5, 20);
JScrollPane outputScrollPane = new JScrollPane(outputTextArea); //For scroll bars around text area

Font bigFont = new Font("Times New Roman", Font.BOLD, 28);

// This is the first method called in a application
//We will create an object of ourselves to call the
//constructor and then set the default close operation for the frame
public static void main(String[] args)
{

PayrollApplication basicGUI = new PayrollApplication();
basicGUI.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}//end of main

//This is the constructor for this class. It will be called from main
//It will set up our GUI panel with needed components
//and set up appropriate event listening
public PayrollApplication()
{
//call the superclass' constructor and send a title
super("Fee Calculator");

//add GUI components to the appropriate container
mainPanel.add(label1);
label1.setFont(bigFont);
label1.setForeground(Color.RED);
mainPanel.add(IDcode);
mainPanel.add(Weight);
mainPanel.add(Rate);
mainPanel.add(priceCharge);
mainPanel.add(calculateButton);
mainPanel.add(outputScrollPane);
JTextField IDCodeField = new JTextField(20);
JTextField WeighttField = new JTextField(20);
JTextField RatetField = new JTextField(20);
JTextField priceChargetField = new JTextField(20);

//add the JPanel to the JFrame
add(mainPanel);

//call the listener method
addListeners();

//set the properties of the JFrame for display
this.setSize(300, 500);
this.setVisible(true);
}//end of constructor

//use to register the components to the action listener
public void addListeners()
{
calculateButton.addActionListener(this);
}

//Retrieve and convert text fields and calculate and display the gross pay
public void addPerformed(ActionEvent evt)
{
double Weight = 0,Rate,priceCharge;
Rate = 0.12;
priceCharge = (Weight * Rate);
String sign = "$";

String.format("%s%2d", sign, Rate, priceCharge);
}

}//end of class
 
Old 03-25-2012, 09:17 AM   #2
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
It is a homework question, so we will only help you to find the answer yourself. Do no expect direct answers, the homeworks are there to teach you something.

For your missing elements, take one of the ones that does show and one of the ones that doesn't. Compare all places in the code when they appear.
 
Old 03-25-2012, 02:32 PM   #3
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
These declarations within your constructor overwrite those declared as class members:
Code:
public PayrollApplication()
{
...
JTextField IDCodeField = new JTextField(20);
JTextField WeighttField = new JTextField(20);
JTextField RatetField = new JTextField(20);
JTextField priceChargetField = new JTextField(20);
...
Also, you will need to add these JTextFields to the JFrame, or better yet, add both the JLabel and JTextFields to a JPanel, and then add this JPanel to the JFrame.
 
  


Reply

Tags
java, text-fields



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Able to Copy Text from uneditable Text Boxes(JTextfields) in Linux harry8potter Linux - Software 5 09-09-2010 06:51 AM
Firefox problem with text boxes automatically highlighting text loki993 Linux - Software 2 07-16-2010 01:52 PM
[SOLVED] All text in text editor turned to boxes... unclerick94 Linux - Newbie 2 07-17-2009 04:14 PM
Samba Directory shares show up as printers on Win2K Boxes mjrdzine Linux - Software 5 12-02-2003 09:55 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 07:09 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration