-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusableFunction.cs
More file actions
666 lines (576 loc) · 22.8 KB
/
Copy pathusableFunction.cs
File metadata and controls
666 lines (576 loc) · 22.8 KB
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
using System;
using System.Data;
using System.Drawing;
using System.Globalization;
using System.IO;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using Log_Book_Application.Includes;
using Microsoft.Reporting.WinForms;
using System.ComponentModel;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing.Printing;
using System.Drawing.Imaging;
using Log_Book_Application;
using System.Security.Cryptography;
namespace Log_Book_Application.Includes
{
class usableFunction
{
string hash = "Code@Filter";
public string Encrypt(string encryptString)
{
byte[] data = UTF8Encoding.UTF8.GetBytes(encryptString);
using (MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider())
{
byte[] keys = md5.ComputeHash(UTF8Encoding.UTF8.GetBytes(hash));
using (TripleDESCryptoServiceProvider tripDes = new TripleDESCryptoServiceProvider()
{
Key = keys,
Mode = CipherMode.ECB,
Padding = PaddingMode.PKCS7
})
{
ICryptoTransform transform = tripDes.CreateEncryptor();
byte[] results = transform.TransformFinalBlock(data, 0, data.Length);
encryptString = Convert.ToBase64String(results, 0, results.Length);
}
}
return encryptString;
}
public string Decrypt(string cipherText)
{
byte[] data = Convert.FromBase64String(cipherText);
using (MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider())
{
byte[] keys = md5.ComputeHash(UTF8Encoding.UTF8.GetBytes(hash));
using (TripleDESCryptoServiceProvider tripDes = new TripleDESCryptoServiceProvider() { Key = keys, Mode = CipherMode.ECB, Padding = PaddingMode.PKCS7 })
{
ICryptoTransform transform = tripDes.CreateDecryptor();
byte[] results = transform.TransformFinalBlock(data, 0, data.Length);
cipherText = UTF8Encoding.UTF8.GetString(results);
}
return cipherText;
}
}
public void clearTxt(Control container)
{
try
{
//'for each txt as control in this(object).control
foreach (Control txt in container.Controls)
{
//conditioning the txt as control by getting it's type.
//the type of txt as control must be textbox.
if (txt is TextBox)
{
//if the object(textbox) is present. The result is, the textbox will be cleared.
txt.Text = "";
}
if (txt is RichTextBox)
{
txt.Text = "";
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
//initialize the validating method
static Regex Valid_Name = StringOnly();
static Regex Valid_Contact = NumbersOnly();
static Regex Valid_Password = ValidPassword();
static Regex Valid_Email = Email_Address();
//Method for validating email address
private static Regex Email_Address()
{
string Email_Pattern = @"^(?!\.)(""([^""\r\\]|\\[""\r\\])*""|"
+ @"([-a-z0-9!#$%&'*+/=?^_`{|}~]|(?<!\.)\.)*)(?<!\.)"
+ @"@[a-z0-9][\w\.-]*[a-z0-9]\.[a-z][a-z\.]*[a-z]$";
return new Regex(Email_Pattern, RegexOptions.IgnoreCase);
}
//Method for string validation only
private static Regex StringOnly()
{
string StringAndNumber_Pattern = "^[a-zA-Z]";
return new Regex(StringAndNumber_Pattern, RegexOptions.IgnoreCase);
}
//Method for numbers validation only
private static Regex NumbersOnly()
{
string StringAndNumber_Pattern = "^[0-9]*$";
return new Regex(StringAndNumber_Pattern, RegexOptions.IgnoreCase);
}
//Method for password validation only
private static Regex ValidPassword()
{
string Password_Pattern = "(?!^[0-9]*$)(?!^[a-zA-Z]*$)^([a-zA-Z0-9]{8,15})$";
return new Regex(Password_Pattern, RegexOptions.IgnoreCase);
}
public void ResponsiveDtg(DataGridView dtg)
{
dtg.DefaultCellStyle.WrapMode = DataGridViewTriState.True;
}
public void KeyPress_Textbox_Numberonly(object sender, KeyPressEventArgs e)
{
// Verify that the pressed key isn't CTRL or any non-numeric digit
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && (e.KeyChar != '.'))
{
e.Handled = true;
}
// If you want, you can allow decimal (float) numbers
if ((e.KeyChar == '.') && ((sender as System.Windows.Forms.TextBox).Text.IndexOf('.') > -1))
{
e.Handled = true;
}
}
public void Make_Alphanumeric_TextBox(object sender, KeyPressEventArgs e)
{
var textboxSender = (TextBox)sender;
var cursorPosition = textboxSender.SelectionStart;
textboxSender.Text = Regex.Replace(textboxSender.Text, "[^0-9a-zA-Z ]", "");
textboxSender.SelectionStart = cursorPosition;
}
public void Make_Numeric_Only(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) &&
(e.KeyChar != '.'))
{
e.Handled = true;
}
// only allow one decimal point
if ((e.KeyChar == '.') && ((sender as TextBox).Text.IndexOf('.') > -1))
{
e.Handled = true;
}
}
public void Numbers_and_Hyphen_Only(object sender, KeyPressEventArgs e)
{
Regex reg = new Regex(@"^[0-9-]*$");
bool textChangedByKey;
string lastText;
TextBox senderTB = sender as TextBox;
if (char.IsControl(e.KeyChar)) return;
if (!reg.IsMatch(senderTB.Text.Insert(senderTB.SelectionStart, e.KeyChar.ToString()) + "1"))
{
e.Handled = true;
return;
}
textChangedByKey = true;
if (!textChangedByKey)
{
if (!reg.IsMatch(senderTB.Text))
{
return;
}
}
else
{
textChangedByKey = false;
lastText = senderTB.Text;
}
}
public void Two_Decimal_Places(object sender, EventArgs e, TextBox txt)
{
if (txt.Text == "" || txt.Text == null)
{
txt.Text = "0.00";
}
else
{
txt.Text = String.Format("{0:N2}", double.Parse(txt.Text));
}
}
public void Datagrid_Setup(DataGridView dtg)
{
if (dtg.Rows.Count > 0)
{
if (dtg.Columns.Count >= 5)
{
dtg.AutoGenerateColumns = false;
dtg.AutoSize = false;
dtg.EnableHeadersVisualStyles = false;
dtg.ScrollBars = ScrollBars.Both;
}
else if (dtg.Columns.Count < 5)
{
ResponsiveDtg(dtg);
dtg.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
}
}
}
public void Font_size_change(Form frm)
{
if (frm.Width > 1400 || frm.Height > 1000)
{
}
}
public void Philippine_Mobile(object sender, EventArgs e)
{
/*
var textboxSender = (TextBox)sender;
var cursorPosition = textboxSender.SelectionStart;
textboxSender.Text = Regex.Replace(textboxSender.Text, @"^(09 |\+639)\d{ 9}$", "");
textboxSender.SelectionStart = cursorPosition;
*/
}
public string Error_Message1;
public void Error_Message()
{
MessageBox.Show(Error_Message1 + " must not empty", "Empty Field Message",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
string ext;
public void Reload_Images(PictureBox pictureBox1, string ID, string Category)
{
//Category is either Employee, Company, Staff, Cust FOLDER PATH
try
{
try
{
ext = Path.GetExtension( Category + ID);
}
catch
{
if (ext == "")
{
ext = ".PNG";
}
}
try
{
FileStream fs = new System.IO.FileStream( Category + ID + ext, FileMode.Open, FileAccess.Read);
pictureBox1.Image = Image.FromStream(fs);
fs.Close();
}
catch
{
try
{
FileStream fs = new System.IO.FileStream(Category + ID + ".PNG", FileMode.Open, FileAccess.Read);
pictureBox1.Image = Image.FromStream(fs);
fs.Close();
}
catch
{
FileStream fs = new System.IO.FileStream(Category + ID + ".JPG", FileMode.Open, FileAccess.Read);
pictureBox1.Image = Image.FromStream(fs);
fs.Close();
}
}
}
catch
{
try
{
FileStream fs = new System.IO.FileStream( Category + @"DONOTDELETE_SUBIMAGE" + ext, FileMode.Open, FileAccess.Read);
pictureBox1.Image = Image.FromStream(fs);
fs.Close();
}
catch
{
try
{
FileStream fs = new System.IO.FileStream(Category + @"DONOTDELETE_SUBIMAGE.PNG", FileMode.Open, FileAccess.Read);
pictureBox1.Image = Image.FromStream(fs);
fs.Close();
}
catch
{
FileStream fs = new System.IO.FileStream(Category + @"DONOTDELETE_SUBIMAGE.JPG", FileMode.Open, FileAccess.Read);
pictureBox1.Image = Image.FromStream(fs);
fs.Close();
}
}
}
}
string dateText, table11;
public void Limit_to_Oldest_Item_date(object sender, EventArgs e, string txt, string report_table)
{
if (report_table == "Stock In")
{
table11 = "`Stocks`";
}
else if (report_table == "Stock Out")
{
table11 = "`Stock Out`";
}
else if (report_table == "Stock Returned")
{
table11 = "`Stock Returned`";
}
SQLConfig config = new SQLConfig();
string sql;
sql = "Select `Entry Date` from " + table11 + " Desc limit 1";
config.singleResult(sql);
if (config.dt.Rows.Count > 0)
{
dateText = config.dt.Rows[0].Field<string>("Entry Date");
DateTime dtTarget = default(DateTime); // (or) DateTime.MinValue , use this for comparision
if (DateTime.TryParseExact(txt, "dd-MM-yyyy", CultureInfo.CurrentCulture, DateTimeStyles.None, out dtTarget))
{
if (DateTime.ParseExact(txt, "dd-MM-yyyy", null) < DateTime.ParseExact(dateText, "dd-MM-yyyy", null))
{
MessageBox.Show("Time must be exact or greater than " + dateText, "First Item Date is " + dateText, MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
}
else
{
MessageBox.Show("Date is not valid! It must be dd-MM-yyyy", "Warning Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
}
else
{
txt = DateTime.Now.ToString("dd-MM-yyyy");
}
}
string appPath, filepath;
public void DoubleClick_Picture_Then_Replace_Existing(PictureBox pic, string ID, string Category)
{
if (ID == null || ID == "")
{
Error_Message1 = "ID";
Error_Message();
return;
}
try
{
ext = Path.GetExtension( Category + ID);
}
catch
{
ext = Path.GetExtension(Category + ID + ".PNG");
}
OpenFileDialog opFile = new OpenFileDialog();
opFile.Title = "Select a Image";
opFile.Filter = " All Files (*.*)|*.*|PNG files (*.PNG)|*.PNG|JPEG files (*.JPG)|*.JPG ";
if (opFile.ShowDialog() == DialogResult.OK)
{
if (ext == "PNG files (*.PNG)|*.PNG" || ext == "JPEG files (*.JPG)|*.JPG" || ext == "")
{
appPath = Category;
if (Directory.Exists(appPath) == false)
{
Directory.CreateDirectory(appPath);
}
else
{
if (ID + ".PNG" != "DONOTDELETE_SUBIMAGE.PNG" || ID + ".JPG" != "DONOTDELETE_SUBIMAGE.PNG" || ID != "DONOTDELETE_SUBIMAGE")
{
if (MessageBox.Show("Are you sure to delete current picture and replace with new image?", "Deleting an existing image", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{
try
{
System.IO.File.Delete(Category + ID + ext);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return;
}
}
else
{
return;
}
}
}
}
else
{
MessageBox.Show("Invalid File! \n\n Select only .JPG or .PNG files", "Cannot Load Image", MessageBoxButtons.OK, MessageBoxIcon.Error);
opFile.Dispose();
return;
}
try
{
Bitmap bmp1 = new Bitmap(pic.Image);
if (System.IO.File.Exists(appPath + ID + ".PNG"))
{
System.IO.File.Delete(appPath + ID + ".PNG");
}
filepath = opFile.FileName;
File.Copy(filepath, appPath + ID + ".PNG"); // <---
pic.Image = new Bitmap(opFile.OpenFile());
}
catch (Exception exp)
{
MessageBox.Show("Unable to open file " + exp.Message);
opFile.Dispose();
return;
}
}
else
{
opFile.Dispose();
}
}
public void DoubleClick_Picture_Then_Replace_Existing_FOR_JPEG(PictureBox pic, string ID, string Category)
{
if (ID == null || ID == "")
{
Error_Message1 = "ID";
Error_Message();
return;
}
try
{
ext = Path.GetExtension(Category + ID);
}
catch
{
ext = Path.GetExtension(Category + ID + ".JPG");
}
OpenFileDialog opFile = new OpenFileDialog();
opFile.Title = "Select a Image";
opFile.Filter = " All Files (*.*)|*.*|PNG files (*.PNG)|*.PNG|JPEG files (*.JPG)|*.JPG ";
if (opFile.ShowDialog() == DialogResult.OK)
{
if (ext == "PNG files (*.PNG)|*.PNG" || ext == "JPEG files (*.JPG)|*.JPG" || ext == "")
{
appPath = Category;
if (Directory.Exists(appPath) == false)
{
Directory.CreateDirectory(appPath);
}
else
{
if (ID + ".PNG" != "DONOTDELETE_SUBIMAGE.PNG" || ID + ".JPG" != "DONOTDELETE_SUBIMAGE.PNG" || ID != "DONOTDELETE_SUBIMAGE")
{
if (MessageBox.Show("Are you sure to delete current picture and replace with new image?", "Deleting an existing image", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{
try
{
System.IO.File.Delete(Category + ID + ext);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return;
}
}
else
{
return;
}
}
}
}
else
{
MessageBox.Show("Invalid File! \n\n Select only .JPG or .PNG files", "Cannot Load Image", MessageBoxButtons.OK, MessageBoxIcon.Error);
opFile.Dispose();
return;
}
try
{
Bitmap bmp1 = new Bitmap(pic.Image);
if (System.IO.File.Exists(appPath + ID + ".JPG"))
{
System.IO.File.Delete(appPath + ID + ".JPG");
}
filepath = opFile.FileName;
File.Copy(filepath, appPath + ID + ".JPG"); // <---
pic.Image = new Bitmap(opFile.OpenFile());
}
catch (Exception exp)
{
MessageBox.Show("Unable to open file " + exp.Message);
opFile.Dispose();
return;
}
}
else
{
opFile.Dispose();
}
}
public void email_validation(string txt)
{
string pattern = @"^(?!\.)(""([^""\r\\]|\\[""\r\\])*""|"
+ @"([-a-z0-9!#$%&'*+/=?^_`{|}~]|(?<!\.)\.)*)(?<!\.)"
+ @"@[a-z0-9][\w\.-]*[a-z0-9]\.[a-z][a-z\.]*[a-z]$";
Match m = Regex.Match(txt, pattern, RegexOptions.IgnoreCase);
if (m.Success == false)
{
MessageBox.Show("Invalid Email Address!", "Invalid", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
}
int Due1 = 0; string Due;
public void Due_Date_Warranty (string TransRef)
{
SQLConfig config = new SQLConfig();
string sql;
sql = "Select Warranty from Settings";
config.singleResult(sql);
if (config.dt.Rows.Count > 0)
{
Due1 = Convert.ToInt32(config.dt.Rows[0].Field<string>("Warranty"));
}
Due = DateTime.Now.AddDays(Due1).ToString("dd-MM-yyyy");
sql = "Select * from `Stock Out` where `Transaction Reference` = '" + TransRef + "' ";
config.singleResult(sql);
if (config.dt.Rows.Count > 0)
{
sql = "Update `Stock Out` set `Warranty Due Date` = '" + Due + "' where `Transaction Reference` = '" + TransRef + "' ";
config.singleResult(sql);
}
}
public void NumbersOnlyDTG_Keypress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
public void Change_Font_DTG(object sender, DataGridViewCellEventArgs e, DataGridView dtg)
{
foreach (DataGridViewRow c in dtg.Rows)
{
if (c.Selected)
{
c.DefaultCellStyle.Font = new Font("Calibri", 10, FontStyle.Bold);
}
else
{
c.DefaultCellStyle.Font = new Font("Calibri", (float)9.75, FontStyle.Regular);
}
}
}
double count1 = 0;
public void Count_person(DataGridView dtg, Label tx)
{
for (int i = 0; i < dtg.Rows.Count; i++)
{
count1 = i;
}
count1 += 1;
tx.Text = count1.ToString();
}
public void Select_All_Dtg( DataGridView dtg, CheckBox bx)
{
if (dtg.RowCount > 0)
{
if (bx.Checked == true)
{
dtg.SelectAll();
}
else
{
bx.Checked = false;
dtg.ClearSelection();
}
}
}
}
}