summary refs log tree commit diff
path: root/invoice_total3/InvoiceTotal/frmInvoiceTotal.cs
blob: 94edf91d97166f4885e24a974bd65733968f2e48 (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
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 InvoiceTotal
{
	public partial class frmInvoiceTotal : Form
	{
		public frmInvoiceTotal()
		{
			InitializeComponent();
		}

		private void btnCalculate_Click(object sender, EventArgs e)
		{
			try {
				if (txtSubtotal.Text == "") {
					MessageBox.Show("Please enter a subtotal",
						"Entry Error");
					return;
				}
				decimal subtotal = Decimal.Parse(txtSubtotal.Text);
				if (subtotal <= 0 || subtotal >= 10000) {
					MessageBox.Show("The subtotal must be in the "
						+ "range of 1 to 9999", "Entry Error");
					return;
				}
				decimal discountPercent = .25m;
				decimal discountAmount = subtotal * discountPercent;
				decimal invoiceTotal = subtotal - discountAmount;

				discountAmount = Math.Round(discountAmount, 2);
				invoiceTotal = Math.Round(invoiceTotal, 2);

				txtDiscountPercent.Text = discountPercent.ToString("p1");
				txtDiscountAmount.Text = discountAmount.ToString();
				txtTotal.Text = invoiceTotal.ToString();
				txtSubtotal.Focus();
			}
			catch {
				MessageBox.Show(
					"Please enter a valid subtotal for the "
					+ "subtotal field.", "Entry Error");
			}

		}

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