-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfrmEditPersonalDetails.cs
367 lines (303 loc) · 12.6 KB
/
frmEditPersonalDetails.cs
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
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;
using System.Windows.Forms.VisualStyles;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
namespace ATM_Kiosk_System
{
public partial class frmEditPersonalDetails : Form
{
int MainTimer = 60;
int SessionTmer = 30;
static int DefaultTimer = 60;
//static string myFiletoOpen = Application.StartupPath + "\\BankData.db";
public ATMconnector myATMconnector;
public BankAccount myLoggedinBankAcount;
public frmEditPersonalDetails()
{
InitializeComponent();
}
private void btnBackToMain_Click(object sender, EventArgs e)
{
DetailsTimer.Enabled = false;
SessionTimeout.Enabled = false;
this.Hide();
frmMainSystem myMainSystem = new frmMainSystem();
myMainSystem.myLoggedinBankAcount = myLoggedinBankAcount;
myMainSystem.myATMconnector = myATMconnector;
myMainSystem.ShowDialog();
this.Close();
}
private void btnEditDetails_Click(object sender, EventArgs e)
{
ResetTimer();
txtFullName.ReadOnly = false;
txtLastName.ReadOnly = false;
dtpDateOfBirth.Enabled = true;
txtEmailAddress.ReadOnly = false;
txtPhoneNumber.ReadOnly = false;
txtAddress.ReadOnly = false;
txtCity.ReadOnly = false;
cmbCounty.Enabled = true;
txtPostcode.ReadOnly = false;
btnEditDetails.Visible = false;
btnSaveChanges.Visible = true;
}
private void frmEditPersonalDetails_Load(object sender, EventArgs e)
{
DetailsTimer.Enabled = true;
SessionTimeout.Enabled = false;
txtFullName.Text = myLoggedinBankAcount.firstname;
txtLastName.Text = myLoggedinBankAcount.lastname;
dtpDateOfBirth.Text = myLoggedinBankAcount.dateofbirth;
txtEmailAddress.Text = myLoggedinBankAcount.emailaddress;
txtPhoneNumber.Text = myLoggedinBankAcount.phonenumber;
txtAddress.Text = myLoggedinBankAcount.address;
txtCity.Text = myLoggedinBankAcount.city;
cmbCounty.Text = myLoggedinBankAcount.county;
txtPostcode.Text = myLoggedinBankAcount.postcode;
lblAccountNumber.Text = "Account Number: " + myLoggedinBankAcount.accountnumber;
lblBalance.Text = "Balance: " + "€" + myLoggedinBankAcount.balance;
lblPin.Text = "Pin: " + myLoggedinBankAcount.accountpin;
//Set Panel to Center of Screen - Fullscreen centered
pnlPersonalDetails.Left = (this.ClientSize.Width - grpPersonalDetails.Size.Width) / 2;
//display details on load
// myATMconnector.FetchPersonalDetails(txtFullName.Text, txtLastName.Text, dtpDateOfBirth.Value, txtEmailAddress.Text,
// txtPhoneNumber.Text, txtAddress.Text, txtCity.Text, cmbCounty.Items, txtPostcode.Text, myLoggedinBankAcount);
}
private void btnLogin_Click(object sender, EventArgs e)
{
ResetTimer();
string warningErrorMessage = "";
//1. FULL NAME
if (txtFullName.Text == "")
{
warningErrorMessage += "You must enter a First Name" + Environment.NewLine;
txtFullName.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//2. PASSPORT NUMBER
if (txtLastName.Text == "")
{
warningErrorMessage += "You must enter a Last Name" + Environment.NewLine;
txtLastName.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//4. PHONE NUMBER
if (txtEmailAddress.Text == "")
{
warningErrorMessage += "You must enter an Email Address" + Environment.NewLine;
txtEmailAddress.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//5. EMAIL ADDRESS
if (txtPhoneNumber.Text == "")
{
warningErrorMessage += "You must enter a Phone Number" + Environment.NewLine;
txtPhoneNumber.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//6. GENDER
if (txtAddress.Text == "")
{
warningErrorMessage += "You must enter an Address" + Environment.NewLine;
txtAddress.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//6. GENDER
if (txtCity.Text == "")
{
warningErrorMessage += "You must enter a City" + Environment.NewLine;
txtCity.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//6. GENDER
if (cmbCounty.Text == "")
{
warningErrorMessage += "You must enter a County" + Environment.NewLine;
cmbCounty.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
//6. GENDER
if (txtPostcode.Text == "")
{
warningErrorMessage += "You must enter a county";
txtPostcode.BackColor = System.Drawing.ColorTranslator.FromHtml("#ccccff");
}
if (warningErrorMessage !="")
{
MessageBox.Show("Sorry, fields cannot be set as blank." + "\n" + "" + warningErrorMessage);
return;
}
else
{
myLoggedinBankAcount.firstname = txtFullName.Text;
myLoggedinBankAcount.lastname = txtLastName.Text;
myLoggedinBankAcount.dateofbirth = dtpDateOfBirth.Text;
myLoggedinBankAcount.emailaddress = txtEmailAddress.Text;
myLoggedinBankAcount.phonenumber = txtPhoneNumber.Text;
myLoggedinBankAcount.address = txtAddress.Text;
myLoggedinBankAcount.city = txtCity.Text;
myLoggedinBankAcount.county = cmbCounty.Text;
myLoggedinBankAcount.postcode = txtPostcode.Text;
myATMconnector.UpdatePersonalDetails(myLoggedinBankAcount);
btnEditDetails.Visible = false;
}
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
ResetTimer();
if (cbxBankDetails.Checked == true)
{
grpBankingDetails.Visible = true;
}
else
{
grpBankingDetails.Visible = false;
}
}
private void lblAccountNumber_Click(object sender, EventArgs e)
{
}
private void grpBankingDetails_Enter(object sender, EventArgs e)
{
}
private void btnHelp_Click(object sender, EventArgs e)
{
ResetTimer();
frmHelp Help = new frmHelp();
Help.ShowDialog();
}
private void ModernBankTooltip3_Popup(object sender, PopupEventArgs e)
{
ToolTip tt = (sender as ToolTip);
string toolTipText = tt.GetToolTip(e.AssociatedControl);
TextFormatFlags flags = TextFormatFlags.LeftAndRightPadding | TextFormatFlags.NoClipping |
TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter;
using (Font font = new Font("Montserrat", 13.0f, FontStyle.Italic))
{
Size textSize = TextRenderer.MeasureText(toolTipText, font, Size.Empty, flags);
e.ToolTipSize = Size.Add(textSize, new Size(2, 2));
}
}
private void ModernBankTooltip3_Draw(object sender, DrawToolTipEventArgs e) => DrawToolTip(e);
private void DrawToolTip(DrawToolTipEventArgs e)
{
e.Graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
using (var sf = new StringFormat(StringFormatFlags.NoClip | StringFormatFlags.NoWrap))
{
sf.LineAlignment = StringAlignment.Center;
sf.Alignment = StringAlignment.Center;
Rectangle shadowBounds = new Rectangle(new Point(e.Bounds.X + 1, e.Bounds.Y + 1), e.Bounds.Size);
using (var linearGradientBrush = new LinearGradientBrush(e.Bounds, System.Drawing.ColorTranslator.FromHtml("#8080FF"), System.Drawing.ColorTranslator.FromHtml("#8080FF"), 30f))
using (Font font = new Font("Montserrat", 12.0f, FontStyle.Italic))
{
e.Graphics.FillRectangle(linearGradientBrush, e.Bounds);
e.Graphics.DrawString(e.ToolTipText, font, Brushes.Black, shadowBounds, sf);
e.Graphics.DrawString(e.ToolTipText, font, Brushes.White, e.Bounds, sf);
}
}
}
private void pnlPersonalDetails_Paint(object sender, PaintEventArgs e)
{
}
private void DetailsTimer_Tick(object sender, EventArgs e)
{
MainTimer--;
if (MainTimer <= 0)
{
DetailsTimer.Enabled = false;
if (MessageBox.Show("Your session is about to be timed out." + "\n" + "Do you need more time?", "Session Timeout", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
SessionTimeout.Enabled = true;
}
else
{
System.Windows.Forms.Application.Exit();
}
}
}
private void SessionTimeout_Tick(object sender, EventArgs e)
{
SessionTmer--;
if (SessionTmer <= 0)
{
SessionTimeout.Enabled = false;
MessageBox.Show("Uh oh! Looks like your session has timed out and we need you to log in again.", "Session Timeout", MessageBoxButtons.OK, MessageBoxIcon.Error);
Application.Exit();
}
}
public void ResetTimer()
{
MainTimer = DefaultTimer;
}
private void txtFullName_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void txtLastName_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void txtEmailAddress_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void txtAddress_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void dtpDateOfBirth_ValueChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void txtPhoneNumber_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void txtCity_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void cmbCounty_SelectedIndexChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void txtPostcode_TextChanged(object sender, EventArgs e)
{
ResetTimer();
}
private void frmEditPersonalDetails_Click(object sender, EventArgs e)
{
ResetTimer();
}
private void txtFullName_Enter(object sender, EventArgs e)
{
txtFullName.BackColor = System.Drawing.Color.White;
}
private void txtLastName_Enter(object sender, EventArgs e)
{
txtLastName.BackColor = System.Drawing.Color.White;
}
private void txtEmailAddress_Enter(object sender, EventArgs e)
{
txtEmailAddress.BackColor = System.Drawing.Color.White;
}
private void txtAddress_Enter(object sender, EventArgs e)
{
txtAddress.BackColor = System.Drawing.Color.White;
}
private void txtPhoneNumber_Enter(object sender, EventArgs e)
{
txtPhoneNumber.BackColor = System.Drawing.Color.White;
}
private void txtCity_Enter(object sender, EventArgs e)
{
txtCity.BackColor = System.Drawing.Color.White;
}
private void txtPostcode_Enter(object sender, EventArgs e)
{
txtPostcode.BackColor = System.Drawing.Color.White;
}
}
}