summary refs log tree commit diff
path: root/future_value2/FutureValue/frmFutureValue.cs
blob: f3015736c6c263e4ab489b8d4334597a389e241d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace FutureValue
{
	public partial class frmFutureValue : Form
	{
		public frmFutureValue()
		{
			InitializeComponent();
		}

		private bool IsDecimal(string txt, string name)
		{
			if (Decimal.TryParse(txt, out _))
				return true;
			MessageBox.Show(name + " must be a decimal");
			return false;
		}

		private bool IsInt32(string txt, string name)
		{
			if (Int32.TryParse(txt, out _))
				return true;
			MessageBox.Show(name + " must be an integer");
			return false;
		}

		private bool IsWithinRange(string txt, string name, decimal min, decimal max)
		{
			if (Decimal.TryParse(txt, out decimal i))
				if (i < min || i > max) {
					MessageBox.Show(name + " must be in the range of "
					+ min + " to " + max + "\n");
					return false;
				}
			return true;
		}

		private bool IsValidData()
		{
			bool valid = true;

			if(!IsDecimal(txtMonthlyInvestment.Text,
				txtMonthlyInvestment.Name))
				valid = false;
			if(!IsWithinRange(txtMonthlyInvestment.Text,
				txtMonthlyInvestment.Name, 0, 10000))
				valid = false;

			if(!IsDecimal(txtInterestRate.Text,
				txtInterestRate.Name))
				valid = false;
			if(!IsWithinRange(txtInterestRate.Text,
				txtInterestRate.Name, 0, 10000))
				valid = false;

			if(!IsInt32(txtYears.Text,
				txtYears.Name))
				valid = false;
			if(!IsWithinRange(txtYears.Text,
				txtYears.Name, 0, 10000))
				valid = false;

			return valid;
		}

		private void btnCalculate_Click(object sender, EventArgs e)
		{
			try {
				if (!IsValidData())
					return;

				decimal monthlyInvestment = Convert.ToDecimal(txtMonthlyInvestment.Text);
				decimal yearlyInterestRate = Convert.ToDecimal(txtInterestRate.Text);
				int years = Convert.ToInt32(txtYears.Text);

				int months = years * 12;
				decimal monthlyInterestRate = yearlyInterestRate / 12 / 100;

				decimal futureValue = this.CalculateFutureValue(
					monthlyInvestment, monthlyInterestRate, months);
				txtFutureValue.Text = futureValue.ToString("c");
				txtMonthlyInvestment.Focus();

				/* throw new Exception("There was an unknown error"); */
			}
			/* catch (FormatException) {
				MessageBox.Show("Invalid format: Try entering " +
					"numbers between 1 and 9999", "Entry Error");
			}
			catch (OverflowException) {
				MessageBox.Show("Overflow Error: Try entering"
					+ "smaller numbers", "Entry Error");
			} */
			catch (Exception ex){
				MessageBox.Show(ex.Message + "\n" +
				ex.GetType().ToString() +  "\n" +
				ex.StackTrace, "Entry Error");
			}
		}

		private decimal CalculateFutureValue(decimal monthlyInvestment,
			decimal monthlyInterestRate, int months)
		{
			decimal futureValue = 0m;
			for (int i = 0; i < months; i++)
			{
				futureValue = (futureValue + monthlyInvestment)
							* (1 + monthlyInterestRate);
			}
			return futureValue;
		}

		private void btnExit_Click(object sender, EventArgs e)
		{
			this.Close();
		}

	}
}