OPPapers.com Essay Index >> Technology >> Mortgage Calculator Week 3
We have many free term papers and essays on Mortgage Calculator Week 3. We also have a wide variety of research papers and book reports available to you for free. You can browse our collection of term papers or use our search engine.
Mortgage Calculator week 3. /* Week3 Individual Assignment * This program
has been developed * to calculate data inputed by the * user ...
pos 407 week 3. ... JLabels and JTextFields***** JPanel row1 = new JPanel(); JLabel
mortgage_label = new JLabel("My Mortgage Calculator", JLabel.CENTER ...
POS 407 Week 3. /* Program: Mortgage Calculator with Graphical User Interface Current
Version: 2.0 Programs accepts user input in 3 text fields: Term, Amount ...
Mortgage Calculator w/ GUI (wk 4). ... version 2.0 - Modified the mortgage program from
Week 2 to ... 3.0 - Modified the mortgage program from version 1.0 to display 3 ...
... Property tax 183.33 Association dues 65.00 Mortgage insurance 0.00 ... NOTE: This calculator
computes the loan amount (which ... movie once a month verse once a week. ...
Submitted by bigtimenoob on October 26, 2006
Category: Technology
Words: 478 | Pages: 2
Views: 540
Popularity Rank: 16,096
Average Member Grade: N/A (Add a Comment / Grade this Paper)
/* Week3 Individual Assignment
* This program has been developed
* to calculate data inputed by the
* user to figure monthly payments
* based on available
mortgage loans.
*
* Version 1 Created 9/16/06 by Richard Shreve
* Version 2 Created 9/22/06 by Richard Shreve
*
*/
// Import required classes
import java.text.*;
import java.awt.*;
import java.awt.event.*;
import java.lang.Math.*;
import javax.swing.*;
public class MortgageCalculator_v2 extends JFrame implements ActionListener{
//Define calculation variables
double a, x, y, z, m;
//Font type for companyname label
Font bigFont = new Font("Times New Roman", Font.ITALIC, 24);
//Label items
JLabel companyname = new JLabel(" McBride Mortgage Calculator");
JLabel loanamount = new JLabel("Enter loan amount: $ ");
JLabel terminterest = new JLabel("Select term and interest rate:");
JLabel monthly = new JLabel("Monthly payment amount:");
JLabel picture;
//Text feilds for entering and displaying desired data
JTextField loanInput;
JTextField payment;
//Buttons to calculate
and clear the form
JButton calculate;
JButton clear;
//Radio buttons to make term and interest rate selections
JRadioButton selection1;
JRadioButton selection2;
JRadioButton selection3;
//List of monthly payments and interest paid per month
JScrollPane amortized;
//Decimal format
DecimalFormat decimal = new DecimalFormat("0.00");
//Menu Items
private javax.swing.JMenu aboutMenu;
private javax.swing.JMenuItem aboutMenuItem;
private javax.swing.JMenuItem clearMenuItem;
private...
You must Login to view the entire paper.
If you are not a member yet, Sign Up for free!