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
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Payment
{
public partial class frmPayment : Form
{
public frmPayment()
{
InitializeComponent();
}
private void frmPayment_Load(object sender, EventArgs e)
{
lstCreditCardType.Items.Add("Visa");
lstCreditCardType.Items.Add("Mastercard");
lstCreditCardType.Items.Add("American Express");
lstCreditCardType.SelectedIndex = 0;
string[] months = {"Select a month...",
"January", "February", "March",
"April", "May", "June",
"July", "August", "September",
"October", "November", "December"};
foreach (string month in months)
cboExpirationMonth.Items.Add(month);
cboExpirationMonth.SelectedIndex = 0;
int year = DateTime.Today.Year;
int endYear = year+8;
cboExpirationYear.Items.Add("Select a year...");
while (year < endYear) {
cboExpirationYear.Items.Add(year);
++year;
}
cboExpirationYear.SelectedIndex = 0;
}
private void btnOK_Click(object sender, EventArgs e)
{
if (IsValidData())
this.SaveData();
}
private void Billing_CheckedChanged(object sender, EventArgs e)
{
if (rdoCreditCard.Checked)
EnableControls();
else
DisableControls();
}
private void EnableControls()
{
lstCreditCardType.Enabled = true;
txtNum.Enabled = true;
cboExpirationMonth.Enabled = true;
cboExpirationYear.Enabled = true;
}
private void DisableControls()
{
lstCreditCardType.Enabled = false;
txtNum.Enabled = false;
cboExpirationMonth.Enabled = false;
cboExpirationYear.Enabled = false;
}
private bool IsValidData()
{
if (rdoCreditCard.Checked) {
if (lstCreditCardType.SelectedIndex == -1) {
MessageBox.Show("You must select a credit card type",
"Entry Error");
lstCreditCardType.Focus();
return false;
}
if (txtNum.Text == "") {
MessageBox.Show("You must enter a credit card number",
"Entry Error");
txtNum.Focus();
return false;
}
if (cboExpirationMonth.SelectedIndex == 0) {
MessageBox.Show("You must select a month", "Entry Error");
cboExpirationMonth.Focus();
return false;
}
if (cboExpirationYear.SelectedIndex == 0) {
MessageBox.Show("You must select a year", "Entry Error");
cboExpirationYear.Focus();
return false;
}
}
return true;
}
private void SaveData()
{
string msg = null;
if (rdoCreditCard.Checked)
msg = "Charge to credit card"
+ "\n\nCard type: " + lstCreditCardType.Text
+ "\nCard number: " + txtNum.Text
+ "\nExpiration date: " + cboExpirationMonth.Text
+ "/" + cboExpirationYear.Text + "\n";
else
msg = "Send bill to customer" + "\n\n";
msg += "Default billing: " + (bool)chkDefault.Checked;
this.Tag = msg;
this.DialogResult = DialogResult.OK;
}
}
}
|