Mortgage Calc

See whether you can get mortgage relief available to 9 million American homeowners

Posted by Jiltin     Tags: 5 March, 2009    363 views    (0) Comment

The following are key excerpts from the federal government’s Q&A about the new program that the Obama administration says should cut mortgage bills for up to 9 million Americans who are having troubling making their monthly payments. The program could provide some borrowers mortgages with interest rates as low as 2 percent and there are also incentives that may pay down principal in some cases. There are two programs — Home Affordable Refinance and Home Affordable Read Full Article (Click here)...

Categories : Finance, Mortgage Calc, Mortgage Pay Tags :

Rules for mortgage modification set – Related to US Mortgages only

Posted by Jiltin     Tags: 5 March, 2009    850 views    (4) Comment

People with unaffordable mortgages now have one set of rules, applicable nationwide, to determine whether they can get lower monthly payments. Folks who can afford their mortgages but need help to refinance to lower rates don’t get a lot of help. The Obama administration’s housing plan encourages lenders to modify the mortgages of homeowners who can’t afford their monthly house payments because of hardship. The definition of hardship is loose and includes: lost income, Read Full Article (Click here)...

Categories : Finance, Mortgage Calc, Mortgage Pay Tags :

MortgageCalculator.Designer.cs

Posted by Jiltin     Tags: 16 May, 2008    153 views    (1) Comment

namespace MortgageCalculator { partial class Form1 { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name=”disposing”>true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != Read Full Article (Click here)...

Categories : Mortgage Calc Tags :

MortgageCalculator.cs

Posted by Jiltin     Tags: 16 May, 2008    341 views    (2) Comment

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace MortgageCalculator { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnCalculate_Click(object sender, EventArgs e) { CalculateTheMortgage(); } private void CalculateTheMortgage() { //  (Loan Value) *  (1 + r/12) ^ p =  (12x / r)  *  ((1 + r/12)^p – 1) // payment = Read Full Article (Click here)...

Categories : Mortgage Calc Tags :