-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenAccount.Designer.cs
832 lines (826 loc) · 37.9 KB
/
OpenAccount.Designer.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
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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
namespace MultiFaceRec
{
partial class OpenAccount
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.cmbGender = new System.Windows.Forms.ComboBox();
this.dtpBirthDate = new System.Windows.Forms.DateTimePicker();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtLName = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtMiddleName = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtFName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.txtCountry = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.txtState = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.txtDistrict = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.txtTahsil = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.txtcity = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.txtarea = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.txtAdd2 = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.txtAdd1 = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.txtMobile2 = new System.Windows.Forms.TextBox();
this.txtEmail = new System.Windows.Forms.TextBox();
this.label17 = new System.Windows.Forms.Label();
this.txtMobile1 = new System.Windows.Forms.TextBox();
this.label16 = new System.Windows.Forms.Label();
this.txtTelphone = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.tabPage5 = new System.Windows.Forms.TabPage();
this.txtBranchDetails = new System.Windows.Forms.TextBox();
this.label24 = new System.Windows.Forms.Label();
this.txtIFSC = new System.Windows.Forms.TextBox();
this.label23 = new System.Windows.Forms.Label();
this.txtAccountNo = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.cmbAccountType = new System.Windows.Forms.ComboBox();
this.txtTransferLimit = new System.Windows.Forms.TextBox();
this.label22 = new System.Windows.Forms.Label();
this.txtPAN = new System.Windows.Forms.TextBox();
this.label21 = new System.Windows.Forms.Label();
this.txtAdhar = new System.Windows.Forms.TextBox();
this.label20 = new System.Windows.Forms.Label();
this.txtNominee = new System.Windows.Forms.TextBox();
this.label19 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.btnSaveNext = new System.Windows.Forms.Button();
this.txtOpeningAmount = new System.Windows.Forms.TextBox();
this.label25 = new System.Windows.Forms.Label();
this.txtUsername = new System.Windows.Forms.TextBox();
this.label26 = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.label27 = new System.Windows.Forms.Label();
this.txtSecurePin = new System.Windows.Forms.TextBox();
this.label28 = new System.Windows.Forms.Label();
this.lblLoginType = new System.Windows.Forms.Label();
this.panel1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage3.SuspendLayout();
this.tabPage5.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.DarkSlateGray;
this.panel1.Controls.Add(this.lblLoginType);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1269, 43);
this.panel1.TabIndex = 11;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Controls.Add(this.tabPage5);
this.tabControl1.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabControl1.Location = new System.Drawing.Point(19, 62);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(1216, 540);
this.tabControl1.TabIndex = 12;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.cmbGender);
this.tabPage1.Controls.Add(this.dtpBirthDate);
this.tabPage1.Controls.Add(this.label6);
this.tabPage1.Controls.Add(this.label5);
this.tabPage1.Controls.Add(this.txtLName);
this.tabPage1.Controls.Add(this.label4);
this.tabPage1.Controls.Add(this.txtMiddleName);
this.tabPage1.Controls.Add(this.label3);
this.tabPage1.Controls.Add(this.txtFName);
this.tabPage1.Controls.Add(this.label2);
this.tabPage1.Location = new System.Drawing.Point(4, 26);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(1208, 510);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Personal Details";
this.tabPage1.UseVisualStyleBackColor = true;
//
// cmbGender
//
this.cmbGender.FormattingEnabled = true;
this.cmbGender.Items.AddRange(new object[] {
"Male",
"Female"});
this.cmbGender.Location = new System.Drawing.Point(507, 80);
this.cmbGender.Name = "cmbGender";
this.cmbGender.Size = new System.Drawing.Size(121, 25);
this.cmbGender.TabIndex = 9;
this.cmbGender.Text = "--Select--";
//
// dtpBirthDate
//
this.dtpBirthDate.Location = new System.Drawing.Point(129, 80);
this.dtpBirthDate.Name = "dtpBirthDate";
this.dtpBirthDate.Size = new System.Drawing.Size(261, 25);
this.dtpBirthDate.TabIndex = 8;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(441, 86);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(59, 17);
this.label6.TabIndex = 6;
this.label6.Text = "Gender :";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(47, 83);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(76, 17);
this.label5.TabIndex = 6;
this.label5.Text = "Birth Date :";
//
// txtLName
//
this.txtLName.Location = new System.Drawing.Point(869, 32);
this.txtLName.Name = "txtLName";
this.txtLName.Size = new System.Drawing.Size(261, 25);
this.txtLName.TabIndex = 5;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(782, 35);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(79, 17);
this.label4.TabIndex = 4;
this.label4.Text = "Last Name :";
//
// txtMiddleName
//
this.txtMiddleName.Location = new System.Drawing.Point(507, 32);
this.txtMiddleName.Name = "txtMiddleName";
this.txtMiddleName.Size = new System.Drawing.Size(261, 25);
this.txtMiddleName.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(404, 35);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(96, 17);
this.label3.TabIndex = 2;
this.label3.Text = "Middle Name :";
//
// txtFName
//
this.txtFName.Location = new System.Drawing.Point(129, 32);
this.txtFName.Name = "txtFName";
this.txtFName.Size = new System.Drawing.Size(261, 25);
this.txtFName.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(42, 35);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(81, 17);
this.label2.TabIndex = 0;
this.label2.Text = "First Name :";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.txtCountry);
this.tabPage2.Controls.Add(this.label13);
this.tabPage2.Controls.Add(this.txtState);
this.tabPage2.Controls.Add(this.label14);
this.tabPage2.Controls.Add(this.txtDistrict);
this.tabPage2.Controls.Add(this.label11);
this.tabPage2.Controls.Add(this.txtTahsil);
this.tabPage2.Controls.Add(this.label12);
this.tabPage2.Controls.Add(this.txtcity);
this.tabPage2.Controls.Add(this.label10);
this.tabPage2.Controls.Add(this.txtarea);
this.tabPage2.Controls.Add(this.label9);
this.tabPage2.Controls.Add(this.txtAdd2);
this.tabPage2.Controls.Add(this.label8);
this.tabPage2.Controls.Add(this.txtAdd1);
this.tabPage2.Controls.Add(this.label7);
this.tabPage2.Location = new System.Drawing.Point(4, 26);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(1208, 510);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Address Details";
this.tabPage2.UseVisualStyleBackColor = true;
//
// txtCountry
//
this.txtCountry.Location = new System.Drawing.Point(725, 211);
this.txtCountry.Name = "txtCountry";
this.txtCountry.Size = new System.Drawing.Size(370, 25);
this.txtCountry.TabIndex = 17;
this.txtCountry.Text = "India";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(640, 214);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(65, 17);
this.label13.TabIndex = 16;
this.label13.Text = "Country :";
//
// txtState
//
this.txtState.Location = new System.Drawing.Point(160, 208);
this.txtState.Name = "txtState";
this.txtState.Size = new System.Drawing.Size(370, 25);
this.txtState.TabIndex = 15;
this.txtState.Text = "Maharashtra";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(102, 211);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(46, 17);
this.label14.TabIndex = 14;
this.label14.Text = "State :";
//
// txtDistrict
//
this.txtDistrict.Location = new System.Drawing.Point(725, 170);
this.txtDistrict.Name = "txtDistrict";
this.txtDistrict.Size = new System.Drawing.Size(370, 25);
this.txtDistrict.TabIndex = 13;
this.txtDistrict.Text = "Nagpur";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(648, 173);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(57, 17);
this.label11.TabIndex = 12;
this.label11.Text = "District :";
//
// txtTahsil
//
this.txtTahsil.Location = new System.Drawing.Point(160, 167);
this.txtTahsil.Name = "txtTahsil";
this.txtTahsil.Size = new System.Drawing.Size(370, 25);
this.txtTahsil.TabIndex = 11;
this.txtTahsil.Text = "Nagpur";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(102, 170);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(48, 17);
this.label12.TabIndex = 10;
this.label12.Text = "Tahsil :";
//
// txtcity
//
this.txtcity.Location = new System.Drawing.Point(725, 126);
this.txtcity.Name = "txtcity";
this.txtcity.Size = new System.Drawing.Size(370, 25);
this.txtcity.TabIndex = 9;
this.txtcity.Text = "Nagpur";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(667, 129);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(38, 17);
this.label10.TabIndex = 8;
this.label10.Text = "City :";
//
// txtarea
//
this.txtarea.Location = new System.Drawing.Point(160, 123);
this.txtarea.Name = "txtarea";
this.txtarea.Size = new System.Drawing.Size(370, 25);
this.txtarea.TabIndex = 7;
this.txtarea.Text = "Pardi";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(102, 126);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(43, 17);
this.label9.TabIndex = 6;
this.label9.Text = "Area :";
//
// txtAdd2
//
this.txtAdd2.Location = new System.Drawing.Point(160, 80);
this.txtAdd2.Name = "txtAdd2";
this.txtAdd2.Size = new System.Drawing.Size(935, 25);
this.txtAdd2.TabIndex = 5;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(55, 83);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(101, 17);
this.label8.TabIndex = 4;
this.label8.Text = "Addres Line 2 : ";
//
// txtAdd1
//
this.txtAdd1.Location = new System.Drawing.Point(160, 38);
this.txtAdd1.Name = "txtAdd1";
this.txtAdd1.Size = new System.Drawing.Size(935, 25);
this.txtAdd1.TabIndex = 3;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(55, 41);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(99, 17);
this.label7.TabIndex = 2;
this.label7.Text = "Addres Line 1 : ";
//
// tabPage3
//
this.tabPage3.Controls.Add(this.txtMobile2);
this.tabPage3.Controls.Add(this.txtEmail);
this.tabPage3.Controls.Add(this.label17);
this.tabPage3.Controls.Add(this.txtMobile1);
this.tabPage3.Controls.Add(this.label16);
this.tabPage3.Controls.Add(this.txtTelphone);
this.tabPage3.Controls.Add(this.label15);
this.tabPage3.Location = new System.Drawing.Point(4, 26);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Size = new System.Drawing.Size(1208, 510);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Contacts Details";
this.tabPage3.UseVisualStyleBackColor = true;
//
// txtMobile2
//
this.txtMobile2.Location = new System.Drawing.Point(535, 79);
this.txtMobile2.Name = "txtMobile2";
this.txtMobile2.Size = new System.Drawing.Size(370, 25);
this.txtMobile2.TabIndex = 22;
//
// txtEmail
//
this.txtEmail.Location = new System.Drawing.Point(146, 120);
this.txtEmail.Name = "txtEmail";
this.txtEmail.Size = new System.Drawing.Size(370, 25);
this.txtEmail.TabIndex = 21;
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(93, 123);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(47, 17);
this.label17.TabIndex = 20;
this.label17.Text = "Email :";
//
// txtMobile1
//
this.txtMobile1.Location = new System.Drawing.Point(146, 79);
this.txtMobile1.Name = "txtMobile1";
this.txtMobile1.Size = new System.Drawing.Size(370, 25);
this.txtMobile1.TabIndex = 19;
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(84, 82);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(56, 17);
this.label16.TabIndex = 18;
this.label16.Text = "Mobile :";
//
// txtTelphone
//
this.txtTelphone.Location = new System.Drawing.Point(146, 38);
this.txtTelphone.Name = "txtTelphone";
this.txtTelphone.Size = new System.Drawing.Size(370, 25);
this.txtTelphone.TabIndex = 17;
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(63, 41);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(77, 17);
this.label15.TabIndex = 16;
this.label15.Text = "Telephone :";
//
// tabPage5
//
this.tabPage5.Controls.Add(this.txtSecurePin);
this.tabPage5.Controls.Add(this.label28);
this.tabPage5.Controls.Add(this.txtPassword);
this.tabPage5.Controls.Add(this.label27);
this.tabPage5.Controls.Add(this.txtUsername);
this.tabPage5.Controls.Add(this.label26);
this.tabPage5.Controls.Add(this.txtOpeningAmount);
this.tabPage5.Controls.Add(this.label25);
this.tabPage5.Controls.Add(this.txtBranchDetails);
this.tabPage5.Controls.Add(this.label24);
this.tabPage5.Controls.Add(this.txtIFSC);
this.tabPage5.Controls.Add(this.label23);
this.tabPage5.Controls.Add(this.txtAccountNo);
this.tabPage5.Controls.Add(this.label1);
this.tabPage5.Controls.Add(this.cmbAccountType);
this.tabPage5.Controls.Add(this.txtTransferLimit);
this.tabPage5.Controls.Add(this.label22);
this.tabPage5.Controls.Add(this.txtPAN);
this.tabPage5.Controls.Add(this.label21);
this.tabPage5.Controls.Add(this.txtAdhar);
this.tabPage5.Controls.Add(this.label20);
this.tabPage5.Controls.Add(this.txtNominee);
this.tabPage5.Controls.Add(this.label19);
this.tabPage5.Controls.Add(this.label18);
this.tabPage5.Location = new System.Drawing.Point(4, 26);
this.tabPage5.Name = "tabPage5";
this.tabPage5.Size = new System.Drawing.Size(1208, 510);
this.tabPage5.TabIndex = 4;
this.tabPage5.Text = "Bank Details";
this.tabPage5.UseVisualStyleBackColor = true;
//
// txtBranchDetails
//
this.txtBranchDetails.Enabled = false;
this.txtBranchDetails.Location = new System.Drawing.Point(703, 117);
this.txtBranchDetails.MaxLength = 10;
this.txtBranchDetails.Name = "txtBranchDetails";
this.txtBranchDetails.Size = new System.Drawing.Size(370, 25);
this.txtBranchDetails.TabIndex = 34;
this.txtBranchDetails.Text = "Nagpur";
//
// label24
//
this.label24.AutoSize = true;
this.label24.Location = new System.Drawing.Point(596, 120);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(101, 17);
this.label24.TabIndex = 33;
this.label24.Text = "Branch Details :";
//
// txtIFSC
//
this.txtIFSC.Enabled = false;
this.txtIFSC.Location = new System.Drawing.Point(703, 74);
this.txtIFSC.MaxLength = 10;
this.txtIFSC.Name = "txtIFSC";
this.txtIFSC.Size = new System.Drawing.Size(370, 25);
this.txtIFSC.TabIndex = 32;
this.txtIFSC.Text = "SILL000111";
//
// label23
//
this.label23.AutoSize = true;
this.label23.Location = new System.Drawing.Point(621, 77);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(76, 17);
this.label23.TabIndex = 31;
this.label23.Text = "IFSC Code :";
//
// txtAccountNo
//
this.txtAccountNo.Enabled = false;
this.txtAccountNo.Location = new System.Drawing.Point(703, 32);
this.txtAccountNo.MaxLength = 10;
this.txtAccountNo.Name = "txtAccountNo";
this.txtAccountNo.Size = new System.Drawing.Size(370, 25);
this.txtAccountNo.TabIndex = 30;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(607, 35);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(90, 17);
this.label1.TabIndex = 29;
this.label1.Text = "Account No. :";
//
// cmbAccountType
//
this.cmbAccountType.FormattingEnabled = true;
this.cmbAccountType.Items.AddRange(new object[] {
"Saving",
"Current"});
this.cmbAccountType.Location = new System.Drawing.Point(157, 32);
this.cmbAccountType.Name = "cmbAccountType";
this.cmbAccountType.Size = new System.Drawing.Size(163, 25);
this.cmbAccountType.TabIndex = 28;
this.cmbAccountType.Text = "--Select--";
//
// txtTransferLimit
//
this.txtTransferLimit.Location = new System.Drawing.Point(157, 205);
this.txtTransferLimit.MaxLength = 10;
this.txtTransferLimit.Name = "txtTransferLimit";
this.txtTransferLimit.Size = new System.Drawing.Size(370, 25);
this.txtTransferLimit.TabIndex = 27;
//
// label22
//
this.label22.AutoSize = true;
this.label22.Location = new System.Drawing.Point(35, 208);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(96, 17);
this.label22.TabIndex = 26;
this.label22.Text = "Transfer Limit :";
//
// txtPAN
//
this.txtPAN.Location = new System.Drawing.Point(157, 162);
this.txtPAN.MaxLength = 10;
this.txtPAN.Name = "txtPAN";
this.txtPAN.Size = new System.Drawing.Size(370, 25);
this.txtPAN.TabIndex = 25;
//
// label21
//
this.label21.AutoSize = true;
this.label21.Location = new System.Drawing.Point(65, 165);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(66, 17);
this.label21.TabIndex = 24;
this.label21.Text = "PAN No. :";
//
// txtAdhar
//
this.txtAdhar.Location = new System.Drawing.Point(157, 114);
this.txtAdhar.MaxLength = 12;
this.txtAdhar.Name = "txtAdhar";
this.txtAdhar.Size = new System.Drawing.Size(370, 25);
this.txtAdhar.TabIndex = 23;
//
// label20
//
this.label20.AutoSize = true;
this.label20.Location = new System.Drawing.Point(54, 117);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(77, 17);
this.label20.TabIndex = 22;
this.label20.Text = "Adhar No. :";
//
// txtNominee
//
this.txtNominee.Location = new System.Drawing.Point(157, 74);
this.txtNominee.Name = "txtNominee";
this.txtNominee.Size = new System.Drawing.Size(370, 25);
this.txtNominee.TabIndex = 21;
//
// label19
//
this.label19.AutoSize = true;
this.label19.Location = new System.Drawing.Point(25, 77);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(106, 17);
this.label19.TabIndex = 20;
this.label19.Text = "Enter Nominee :";
//
// label18
//
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(34, 35);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(97, 17);
this.label18.TabIndex = 18;
this.label18.Text = "Account Type :";
//
// btnSaveNext
//
this.btnSaveNext.BackColor = System.Drawing.Color.DarkGreen;
this.btnSaveNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSaveNext.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSaveNext.ForeColor = System.Drawing.Color.White;
this.btnSaveNext.Location = new System.Drawing.Point(1020, 608);
this.btnSaveNext.Name = "btnSaveNext";
this.btnSaveNext.Size = new System.Drawing.Size(211, 38);
this.btnSaveNext.TabIndex = 13;
this.btnSaveNext.Text = "Save And Next";
this.btnSaveNext.UseVisualStyleBackColor = false;
this.btnSaveNext.Click += new System.EventHandler(this.btnSaveNext_Click);
//
// txtOpeningAmount
//
this.txtOpeningAmount.Location = new System.Drawing.Point(157, 247);
this.txtOpeningAmount.MaxLength = 10;
this.txtOpeningAmount.Name = "txtOpeningAmount";
this.txtOpeningAmount.Size = new System.Drawing.Size(370, 25);
this.txtOpeningAmount.TabIndex = 36;
//
// label25
//
this.label25.AutoSize = true;
this.label25.Location = new System.Drawing.Point(10, 250);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(121, 17);
this.label25.TabIndex = 35;
this.label25.Text = "Opening Amount :";
//
// txtUsername
//
this.txtUsername.Enabled = false;
this.txtUsername.Location = new System.Drawing.Point(703, 157);
this.txtUsername.MaxLength = 10;
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(370, 25);
this.txtUsername.TabIndex = 38;
//
// label26
//
this.label26.AutoSize = true;
this.label26.Location = new System.Drawing.Point(584, 161);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(113, 17);
this.label26.TabIndex = 37;
this.label26.Text = "Login Username :";
//
// txtPassword
//
this.txtPassword.Enabled = false;
this.txtPassword.Location = new System.Drawing.Point(703, 200);
this.txtPassword.MaxLength = 10;
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(370, 25);
this.txtPassword.TabIndex = 40;
//
// label27
//
this.label27.AutoSize = true;
this.label27.Location = new System.Drawing.Point(584, 204);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(110, 17);
this.label27.TabIndex = 39;
this.label27.Text = "Login Password :";
//
// txtSecurePin
//
this.txtSecurePin.Enabled = false;
this.txtSecurePin.Location = new System.Drawing.Point(703, 242);
this.txtSecurePin.MaxLength = 10;
this.txtSecurePin.Name = "txtSecurePin";
this.txtSecurePin.Size = new System.Drawing.Size(370, 25);
this.txtSecurePin.TabIndex = 42;
//
// label28
//
this.label28.AutoSize = true;
this.label28.Location = new System.Drawing.Point(616, 247);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(78, 17);
this.label28.TabIndex = 41;
this.label28.Text = "Secure Pin :";
//
// lblLoginType
//
this.lblLoginType.AutoSize = true;
this.lblLoginType.Font = new System.Drawing.Font("Segoe UI", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblLoginType.ForeColor = System.Drawing.Color.Gold;
this.lblLoginType.Location = new System.Drawing.Point(12, -3);
this.lblLoginType.Name = "lblLoginType";
this.lblLoginType.Size = new System.Drawing.Size(286, 45);
this.lblLoginType.TabIndex = 1;
this.lblLoginType.Text = "Bank Registration";
//
// OpenAccount
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(1269, 673);
this.Controls.Add(this.btnSaveNext);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "OpenAccount";
this.Text = "OpenAccount";
this.Load += new System.EventHandler(this.OpenAccount_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
this.tabPage5.ResumeLayout(false);
this.tabPage5.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.ComboBox cmbGender;
private System.Windows.Forms.DateTimePicker dtpBirthDate;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtLName;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtMiddleName;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtFName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.TextBox txtCountry;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.TextBox txtState;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.TextBox txtDistrict;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox txtTahsil;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.TextBox txtcity;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.TextBox txtarea;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox txtAdd2;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox txtAdd1;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.TextBox txtMobile2;
private System.Windows.Forms.TextBox txtEmail;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.TextBox txtMobile1;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.TextBox txtTelphone;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.TabPage tabPage5;
private System.Windows.Forms.TextBox txtAdhar;
private System.Windows.Forms.Label label20;
private System.Windows.Forms.TextBox txtNominee;
private System.Windows.Forms.Label label19;
private System.Windows.Forms.Label label18;
private System.Windows.Forms.TextBox txtTransferLimit;
private System.Windows.Forms.Label label22;
private System.Windows.Forms.TextBox txtPAN;
private System.Windows.Forms.Label label21;
private System.Windows.Forms.Button btnSaveNext;
private System.Windows.Forms.ComboBox cmbAccountType;
private System.Windows.Forms.TextBox txtBranchDetails;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.TextBox txtIFSC;
private System.Windows.Forms.Label label23;
private System.Windows.Forms.TextBox txtAccountNo;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtOpeningAmount;
private System.Windows.Forms.Label label25;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label label27;
private System.Windows.Forms.TextBox txtUsername;
private System.Windows.Forms.Label label26;
private System.Windows.Forms.TextBox txtSecurePin;
private System.Windows.Forms.Label label28;
private System.Windows.Forms.Label lblLoginType;
}
}