using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace MortgagePayments { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Read More
// calculate your monthly mortgage payments // a C# Windows GUI with a Form, Labels, TextBoxes, and a Button // compiled with the neat SnippetCompiler.exe (which uses csc.exe) // from: http://www.sliver.com/dotnet/SnippetCompiler/ // C# and .NET Framework V2.0 vegaseat 03apr2007 namespace Read More