OPPapers.com Essay Index >> Technology >> Gui Mortgage Calculator
We have many free term papers and essays on Gui Mortgage Calculator. 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.
GUI Mortgage Calculator. GUI Mortgage Calculator University of Phoenix David
Silberberg POS 407 04-19-2005 Program /* * MortgageGui ...
Mortgage Calculator w/ GUI (wk 4). Filename: MortCalc.java /* Version:
1.0 - Initial version 2.0 - Modified the mortgage program ...
... KeyEvent.VK_H); frameMenu.getAccessibleContext().setAccessibleDescription("Mortgage
GUI help menu ... for using the Mortgage Calculator"); helpItem.addActionListener ...
... public Mortgage (int width, int height) { this.setTitle ("Nick's Mortgage Calculator");
this.setResizable ... the Fields and the Labels for the GUI loanLabel = new ...
POS 407 Week1. /** This is the Week2 Mortgage calculator GUI box for POS
407, calculates loan, rate, and term. */ import java.awt ...
Submitted by sstan03 on September 18, 2005
Category: Technology
Words: 1963 | Pages: 8
Views: 1425
Popularity Rank: 2,550
Average Member Grade: C (Add a Comment / Grade this Paper)
GUI Mortgage Calculator
University of Phoenix
David Silberberg
POS 407
04-19-2005
Program
/*
* MortgageGui.java
* Version 4
* Created on April 19, 2005
* Use a graphical interface to allow a user to input a principle amount, interest rate
* and term of loan then calculate loan payment.
* Added text field to show amortization of loan. Also checked for last payment equal to
* less than monthly payment. Added in the ability to select a predefined interest rate
* and term. Added in the ability to read in from a file (file is found in C:\mortgagein.txt).
*
*
* @author ************
*/
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.io.*;
public class MortgageGUI extends JFrame implements ActionListener {
double total = 0; //monthly payment initalization of variables
double i = 0; //interest
double p = 0; //principle
int t = 0; //term in years
int m = 0; //monthly term
double j = 0; //daily interest rate
double mPayment = 0;
double monthlyInterest = 0;
double principleOnly = 0;
double newBalance = 0;
int choice = 0;
//setup row
JPanel row = new JPanel();
JLabel heading = new JLabel("Mortgage Calculator", JLabel.CENTER);
//setup row 1
JPanel row1 = new JPanel();
JLabel principle = new JLabel("Amount to Borrow:", JLabel.RIGHT);
JTextField princ = new JTextField("100000", 6);
JLabel term = new JLabel(" Years:", JLabel.RIGHT);
JTextField years = new JTextField("", 3);
JLabel rate = new JLabel(" Interest Rate:", JLabel.RIGHT);
JTextField irate = new...
You must Login to view the entire paper.
If you are not a member yet, Sign Up for free!
Code not complete, July 8, 2008
Grader: jonesmc215, Grade: C
Code not complete