-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptionsDialog.Designer.cs
1271 lines (1265 loc) · 88.3 KB
/
OptionsDialog.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
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
namespace ClockIn
{
partial class OptionsDialog
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsDialog));
this.lblRegularTime = new System.Windows.Forms.Label();
this.lblRegularTimeH = new System.Windows.Forms.Label();
this.lblMaxTime = new System.Windows.Forms.Label();
this.lblMaxTimeH = new System.Windows.Forms.Label();
this.lblMinBeforeMax = new System.Windows.Forms.Label();
this.btnClose = new System.Windows.Forms.Button();
this.grpLastSession = new System.Windows.Forms.GroupBox();
this.rbtQueryStartBehavior = new System.Windows.Forms.RadioButton();
this.rbtContinueSession = new System.Windows.Forms.RadioButton();
this.rbtNewSession = new System.Windows.Forms.RadioButton();
this.cbxAutoLaunch = new System.Windows.Forms.CheckBox();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.lblBreaks = new System.Windows.Forms.Label();
this.lblBreaksMin = new System.Windows.Forms.Label();
this.grpBreaksPeriod = new System.Windows.Forms.GroupBox();
this.lblBreakMin = new System.Windows.Forms.Label();
this.lblBreak = new System.Windows.Forms.Label();
this.nmcBreak = new System.Windows.Forms.NumericUpDown();
this.dtpBreaksEnd = new System.Windows.Forms.DateTimePicker();
this.lblBreaksEnd = new System.Windows.Forms.Label();
this.lblBreaksBegin = new System.Windows.Forms.Label();
this.dtpBreaksBegin = new System.Windows.Forms.DateTimePicker();
this.lblAdder2Min = new System.Windows.Forms.Label();
this.lblAdder1Min = new System.Windows.Forms.Label();
this.lblAdder2 = new System.Windows.Forms.Label();
this.lblWorkspan2H = new System.Windows.Forms.Label();
this.lblWorkspan2 = new System.Windows.Forms.Label();
this.lblWorkSpan1H = new System.Windows.Forms.Label();
this.lblAdder1 = new System.Windows.Forms.Label();
this.lblWorkspan1 = new System.Windows.Forms.Label();
this.btnSelectSound = new System.Windows.Forms.Button();
this.dlgSelectSound = new System.Windows.Forms.OpenFileDialog();
this.lblSoundFile = new System.Windows.Forms.Label();
this.tbcOptions = new System.Windows.Forms.TabControl();
this.tbpMisc = new System.Windows.Forms.TabPage();
this.btnHotkeys = new System.Windows.Forms.Button();
this.lblHotkeys = new System.Windows.Forms.Label();
this.grpArrivalOffsets = new System.Windows.Forms.GroupBox();
this.lblSessionResetMin = new System.Windows.Forms.Label();
this.lblArrivalMin = new System.Windows.Forms.Label();
this.nmcSessionReset = new System.Windows.Forms.NumericUpDown();
this.lblSessionReset = new System.Windows.Forms.Label();
this.nmcArrival = new System.Windows.Forms.NumericUpDown();
this.lblArrival = new System.Windows.Forms.Label();
this.lblArrivalOffsets = new System.Windows.Forms.Label();
this.cbxFlatIcon = new System.Windows.Forms.CheckBox();
this.cbxMinimized = new System.Windows.Forms.CheckBox();
this.cbxLowPowerIsStart = new System.Windows.Forms.CheckBox();
this.tbpTimePeriods = new System.Windows.Forms.TabPage();
this.grpOtherPeriod = new System.Windows.Forms.GroupBox();
this.nmcAdder1 = new System.Windows.Forms.NumericUpDown();
this.nmcAdder2 = new System.Windows.Forms.NumericUpDown();
this.nmcWorkspan1 = new System.Windows.Forms.NumericUpDown();
this.nmcWorkspan2 = new System.Windows.Forms.NumericUpDown();
this.nmcRegularTime = new System.Windows.Forms.NumericUpDown();
this.nmcMaxTime = new System.Windows.Forms.NumericUpDown();
this.tbpNotifications = new System.Windows.Forms.TabPage();
this.grpWorkingTime = new System.Windows.Forms.GroupBox();
this.cbxNotifyRegularTime = new System.Windows.Forms.CheckBox();
this.cbxSystemNotifications = new System.Windows.Forms.CheckBox();
this.nmcNotifyRegAdvance = new System.Windows.Forms.NumericUpDown();
this.lblMinBeforeReg = new System.Windows.Forms.Label();
this.cbxNotificationAlwayOnTop = new System.Windows.Forms.CheckBox();
this.nmcNotifyMaxAdvance = new System.Windows.Forms.NumericUpDown();
this.cbxPlaySound = new System.Windows.Forms.CheckBox();
this.cbxNotifyMaxTime = new System.Windows.Forms.CheckBox();
this.cbxNotifyOnClockInOut = new System.Windows.Forms.CheckBox();
this.tbpClocking = new System.Windows.Forms.TabPage();
this.grpClockingOffsets = new System.Windows.Forms.GroupBox();
this.lblAbsenceOffsets = new System.Windows.Forms.Label();
this.lblClockOutMin = new System.Windows.Forms.Label();
this.lblClockIn = new System.Windows.Forms.Label();
this.lblClockInMin = new System.Windows.Forms.Label();
this.nmcClockIn = new System.Windows.Forms.NumericUpDown();
this.nmcClockOut = new System.Windows.Forms.NumericUpDown();
this.lblClockOut = new System.Windows.Forms.Label();
this.cbxAskForClockIn = new System.Windows.Forms.CheckBox();
this.cbxClockInAtUnlock = new System.Windows.Forms.CheckBox();
this.cbxConfirmOnClockIn = new System.Windows.Forms.CheckBox();
this.cbxMinimizeOnClockOut = new System.Windows.Forms.CheckBox();
this.cbxClockInAtStart = new System.Windows.Forms.CheckBox();
this.cbxClockInAtWakeup = new System.Windows.Forms.CheckBox();
this.erpValidation = new System.Windows.Forms.ErrorProvider(this.components);
this.nmcBreaksDuration = new System.Windows.Forms.NumericUpDown();
this.grpLastSession.SuspendLayout();
this.grpBreaksPeriod.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nmcBreak)).BeginInit();
this.tbcOptions.SuspendLayout();
this.tbpMisc.SuspendLayout();
this.grpArrivalOffsets.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nmcSessionReset)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcArrival)).BeginInit();
this.tbpTimePeriods.SuspendLayout();
this.grpOtherPeriod.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nmcAdder1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcAdder2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcWorkspan1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcWorkspan2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcRegularTime)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcMaxTime)).BeginInit();
this.tbpNotifications.SuspendLayout();
this.grpWorkingTime.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nmcNotifyRegAdvance)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcNotifyMaxAdvance)).BeginInit();
this.tbpClocking.SuspendLayout();
this.grpClockingOffsets.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nmcClockIn)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcClockOut)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.erpValidation)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nmcBreaksDuration)).BeginInit();
this.SuspendLayout();
//
// lblRegularTime
//
resources.ApplyResources(this.lblRegularTime, "lblRegularTime");
this.erpValidation.SetError(this.lblRegularTime, resources.GetString("lblRegularTime.Error"));
this.erpValidation.SetIconAlignment(this.lblRegularTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblRegularTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblRegularTime, ((int)(resources.GetObject("lblRegularTime.IconPadding"))));
this.lblRegularTime.Name = "lblRegularTime";
//
// lblRegularTimeH
//
resources.ApplyResources(this.lblRegularTimeH, "lblRegularTimeH");
this.erpValidation.SetError(this.lblRegularTimeH, resources.GetString("lblRegularTimeH.Error"));
this.erpValidation.SetIconAlignment(this.lblRegularTimeH, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblRegularTimeH.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblRegularTimeH, ((int)(resources.GetObject("lblRegularTimeH.IconPadding"))));
this.lblRegularTimeH.Name = "lblRegularTimeH";
//
// lblMaxTime
//
resources.ApplyResources(this.lblMaxTime, "lblMaxTime");
this.erpValidation.SetError(this.lblMaxTime, resources.GetString("lblMaxTime.Error"));
this.erpValidation.SetIconAlignment(this.lblMaxTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblMaxTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblMaxTime, ((int)(resources.GetObject("lblMaxTime.IconPadding"))));
this.lblMaxTime.Name = "lblMaxTime";
//
// lblMaxTimeH
//
resources.ApplyResources(this.lblMaxTimeH, "lblMaxTimeH");
this.erpValidation.SetError(this.lblMaxTimeH, resources.GetString("lblMaxTimeH.Error"));
this.erpValidation.SetIconAlignment(this.lblMaxTimeH, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblMaxTimeH.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblMaxTimeH, ((int)(resources.GetObject("lblMaxTimeH.IconPadding"))));
this.lblMaxTimeH.Name = "lblMaxTimeH";
//
// lblMinBeforeMax
//
resources.ApplyResources(this.lblMinBeforeMax, "lblMinBeforeMax");
this.erpValidation.SetError(this.lblMinBeforeMax, resources.GetString("lblMinBeforeMax.Error"));
this.erpValidation.SetIconAlignment(this.lblMinBeforeMax, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblMinBeforeMax.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblMinBeforeMax, ((int)(resources.GetObject("lblMinBeforeMax.IconPadding"))));
this.lblMinBeforeMax.Name = "lblMinBeforeMax";
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.erpValidation.SetError(this.btnClose, resources.GetString("btnClose.Error"));
this.erpValidation.SetIconAlignment(this.btnClose, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("btnClose.IconAlignment"))));
this.erpValidation.SetIconPadding(this.btnClose, ((int)(resources.GetObject("btnClose.IconPadding"))));
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.BtnClose_Click);
//
// grpLastSession
//
resources.ApplyResources(this.grpLastSession, "grpLastSession");
this.grpLastSession.Controls.Add(this.rbtQueryStartBehavior);
this.grpLastSession.Controls.Add(this.rbtContinueSession);
this.grpLastSession.Controls.Add(this.rbtNewSession);
this.erpValidation.SetError(this.grpLastSession, resources.GetString("grpLastSession.Error"));
this.erpValidation.SetIconAlignment(this.grpLastSession, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("grpLastSession.IconAlignment"))));
this.erpValidation.SetIconPadding(this.grpLastSession, ((int)(resources.GetObject("grpLastSession.IconPadding"))));
this.grpLastSession.Name = "grpLastSession";
this.grpLastSession.TabStop = false;
//
// rbtQueryStartBehavior
//
resources.ApplyResources(this.rbtQueryStartBehavior, "rbtQueryStartBehavior");
this.rbtQueryStartBehavior.Checked = true;
this.erpValidation.SetError(this.rbtQueryStartBehavior, resources.GetString("rbtQueryStartBehavior.Error"));
this.erpValidation.SetIconAlignment(this.rbtQueryStartBehavior, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("rbtQueryStartBehavior.IconAlignment"))));
this.erpValidation.SetIconPadding(this.rbtQueryStartBehavior, ((int)(resources.GetObject("rbtQueryStartBehavior.IconPadding"))));
this.rbtQueryStartBehavior.Name = "rbtQueryStartBehavior";
this.rbtQueryStartBehavior.TabStop = true;
this.rbtQueryStartBehavior.UseVisualStyleBackColor = true;
//
// rbtContinueSession
//
resources.ApplyResources(this.rbtContinueSession, "rbtContinueSession");
this.erpValidation.SetError(this.rbtContinueSession, resources.GetString("rbtContinueSession.Error"));
this.erpValidation.SetIconAlignment(this.rbtContinueSession, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("rbtContinueSession.IconAlignment"))));
this.erpValidation.SetIconPadding(this.rbtContinueSession, ((int)(resources.GetObject("rbtContinueSession.IconPadding"))));
this.rbtContinueSession.Name = "rbtContinueSession";
this.rbtContinueSession.UseVisualStyleBackColor = true;
//
// rbtNewSession
//
resources.ApplyResources(this.rbtNewSession, "rbtNewSession");
this.erpValidation.SetError(this.rbtNewSession, resources.GetString("rbtNewSession.Error"));
this.erpValidation.SetIconAlignment(this.rbtNewSession, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("rbtNewSession.IconAlignment"))));
this.erpValidation.SetIconPadding(this.rbtNewSession, ((int)(resources.GetObject("rbtNewSession.IconPadding"))));
this.rbtNewSession.Name = "rbtNewSession";
this.rbtNewSession.UseVisualStyleBackColor = true;
//
// cbxAutoLaunch
//
resources.ApplyResources(this.cbxAutoLaunch, "cbxAutoLaunch");
this.erpValidation.SetError(this.cbxAutoLaunch, resources.GetString("cbxAutoLaunch.Error"));
this.erpValidation.SetIconAlignment(this.cbxAutoLaunch, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxAutoLaunch.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxAutoLaunch, ((int)(resources.GetObject("cbxAutoLaunch.IconPadding"))));
this.cbxAutoLaunch.Name = "cbxAutoLaunch";
this.cbxAutoLaunch.UseVisualStyleBackColor = true;
//
// dateTimePicker1
//
resources.ApplyResources(this.dateTimePicker1, "dateTimePicker1");
this.erpValidation.SetError(this.dateTimePicker1, resources.GetString("dateTimePicker1.Error"));
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.erpValidation.SetIconAlignment(this.dateTimePicker1, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("dateTimePicker1.IconAlignment"))));
this.erpValidation.SetIconPadding(this.dateTimePicker1, ((int)(resources.GetObject("dateTimePicker1.IconPadding"))));
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.ShowUpDown = true;
//
// lblBreaks
//
resources.ApplyResources(this.lblBreaks, "lblBreaks");
this.erpValidation.SetError(this.lblBreaks, resources.GetString("lblBreaks.Error"));
this.erpValidation.SetIconAlignment(this.lblBreaks, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblBreaks.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblBreaks, ((int)(resources.GetObject("lblBreaks.IconPadding"))));
this.lblBreaks.Name = "lblBreaks";
//
// lblBreaksMin
//
resources.ApplyResources(this.lblBreaksMin, "lblBreaksMin");
this.erpValidation.SetError(this.lblBreaksMin, resources.GetString("lblBreaksMin.Error"));
this.erpValidation.SetIconAlignment(this.lblBreaksMin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblBreaksMin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblBreaksMin, ((int)(resources.GetObject("lblBreaksMin.IconPadding"))));
this.lblBreaksMin.Name = "lblBreaksMin";
//
// grpBreaksPeriod
//
resources.ApplyResources(this.grpBreaksPeriod, "grpBreaksPeriod");
this.grpBreaksPeriod.Controls.Add(this.lblBreakMin);
this.grpBreaksPeriod.Controls.Add(this.lblBreak);
this.grpBreaksPeriod.Controls.Add(this.nmcBreak);
this.grpBreaksPeriod.Controls.Add(this.dtpBreaksEnd);
this.grpBreaksPeriod.Controls.Add(this.lblBreaksEnd);
this.grpBreaksPeriod.Controls.Add(this.lblBreaksBegin);
this.grpBreaksPeriod.Controls.Add(this.dtpBreaksBegin);
this.erpValidation.SetError(this.grpBreaksPeriod, resources.GetString("grpBreaksPeriod.Error"));
this.erpValidation.SetIconAlignment(this.grpBreaksPeriod, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("grpBreaksPeriod.IconAlignment"))));
this.erpValidation.SetIconPadding(this.grpBreaksPeriod, ((int)(resources.GetObject("grpBreaksPeriod.IconPadding"))));
this.grpBreaksPeriod.Name = "grpBreaksPeriod";
this.grpBreaksPeriod.TabStop = false;
//
// lblBreakMin
//
resources.ApplyResources(this.lblBreakMin, "lblBreakMin");
this.erpValidation.SetError(this.lblBreakMin, resources.GetString("lblBreakMin.Error"));
this.erpValidation.SetIconAlignment(this.lblBreakMin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblBreakMin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblBreakMin, ((int)(resources.GetObject("lblBreakMin.IconPadding"))));
this.lblBreakMin.Name = "lblBreakMin";
//
// lblBreak
//
resources.ApplyResources(this.lblBreak, "lblBreak");
this.erpValidation.SetError(this.lblBreak, resources.GetString("lblBreak.Error"));
this.erpValidation.SetIconAlignment(this.lblBreak, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblBreak.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblBreak, ((int)(resources.GetObject("lblBreak.IconPadding"))));
this.lblBreak.Name = "lblBreak";
//
// nmcBreak
//
resources.ApplyResources(this.nmcBreak, "nmcBreak");
this.nmcBreak.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "Break", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcBreak, resources.GetString("nmcBreak.Error"));
this.erpValidation.SetIconAlignment(this.nmcBreak, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcBreak.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcBreak, ((int)(resources.GetObject("nmcBreak.IconPadding"))));
this.nmcBreak.Maximum = new decimal(new int[] {
180,
0,
0,
0});
this.nmcBreak.Name = "nmcBreak";
this.nmcBreak.Value = global::ClockIn.Properties.Settings.Default.Break;
this.nmcBreak.Validating += new System.ComponentModel.CancelEventHandler(this.NmcBreak_Validating);
//
// dtpBreaksEnd
//
resources.ApplyResources(this.dtpBreaksEnd, "dtpBreaksEnd");
this.dtpBreaksEnd.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "BreaksEnd", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.dtpBreaksEnd, resources.GetString("dtpBreaksEnd.Error"));
this.dtpBreaksEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.erpValidation.SetIconAlignment(this.dtpBreaksEnd, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("dtpBreaksEnd.IconAlignment"))));
this.erpValidation.SetIconPadding(this.dtpBreaksEnd, ((int)(resources.GetObject("dtpBreaksEnd.IconPadding"))));
this.dtpBreaksEnd.Name = "dtpBreaksEnd";
this.dtpBreaksEnd.ShowUpDown = true;
this.dtpBreaksEnd.Value = global::ClockIn.Properties.Settings.Default.BreaksEnd;
this.dtpBreaksEnd.Validating += new System.ComponentModel.CancelEventHandler(this.DtpBreaksEnd_Validating);
//
// lblBreaksEnd
//
resources.ApplyResources(this.lblBreaksEnd, "lblBreaksEnd");
this.erpValidation.SetError(this.lblBreaksEnd, resources.GetString("lblBreaksEnd.Error"));
this.erpValidation.SetIconAlignment(this.lblBreaksEnd, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblBreaksEnd.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblBreaksEnd, ((int)(resources.GetObject("lblBreaksEnd.IconPadding"))));
this.lblBreaksEnd.Name = "lblBreaksEnd";
//
// lblBreaksBegin
//
resources.ApplyResources(this.lblBreaksBegin, "lblBreaksBegin");
this.erpValidation.SetError(this.lblBreaksBegin, resources.GetString("lblBreaksBegin.Error"));
this.erpValidation.SetIconAlignment(this.lblBreaksBegin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblBreaksBegin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblBreaksBegin, ((int)(resources.GetObject("lblBreaksBegin.IconPadding"))));
this.lblBreaksBegin.Name = "lblBreaksBegin";
//
// dtpBreaksBegin
//
resources.ApplyResources(this.dtpBreaksBegin, "dtpBreaksBegin");
this.dtpBreaksBegin.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "BreaksBegin", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.dtpBreaksBegin, resources.GetString("dtpBreaksBegin.Error"));
this.dtpBreaksBegin.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.erpValidation.SetIconAlignment(this.dtpBreaksBegin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("dtpBreaksBegin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.dtpBreaksBegin, ((int)(resources.GetObject("dtpBreaksBegin.IconPadding"))));
this.dtpBreaksBegin.Name = "dtpBreaksBegin";
this.dtpBreaksBegin.ShowUpDown = true;
this.dtpBreaksBegin.Value = global::ClockIn.Properties.Settings.Default.BreaksBegin;
this.dtpBreaksBegin.Validating += new System.ComponentModel.CancelEventHandler(this.DtpBreaksBegin_Validating);
//
// lblAdder2Min
//
resources.ApplyResources(this.lblAdder2Min, "lblAdder2Min");
this.erpValidation.SetError(this.lblAdder2Min, resources.GetString("lblAdder2Min.Error"));
this.erpValidation.SetIconAlignment(this.lblAdder2Min, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblAdder2Min.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblAdder2Min, ((int)(resources.GetObject("lblAdder2Min.IconPadding"))));
this.lblAdder2Min.Name = "lblAdder2Min";
//
// lblAdder1Min
//
resources.ApplyResources(this.lblAdder1Min, "lblAdder1Min");
this.erpValidation.SetError(this.lblAdder1Min, resources.GetString("lblAdder1Min.Error"));
this.erpValidation.SetIconAlignment(this.lblAdder1Min, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblAdder1Min.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblAdder1Min, ((int)(resources.GetObject("lblAdder1Min.IconPadding"))));
this.lblAdder1Min.Name = "lblAdder1Min";
//
// lblAdder2
//
resources.ApplyResources(this.lblAdder2, "lblAdder2");
this.erpValidation.SetError(this.lblAdder2, resources.GetString("lblAdder2.Error"));
this.erpValidation.SetIconAlignment(this.lblAdder2, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblAdder2.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblAdder2, ((int)(resources.GetObject("lblAdder2.IconPadding"))));
this.lblAdder2.Name = "lblAdder2";
//
// lblWorkspan2H
//
resources.ApplyResources(this.lblWorkspan2H, "lblWorkspan2H");
this.erpValidation.SetError(this.lblWorkspan2H, resources.GetString("lblWorkspan2H.Error"));
this.erpValidation.SetIconAlignment(this.lblWorkspan2H, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblWorkspan2H.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblWorkspan2H, ((int)(resources.GetObject("lblWorkspan2H.IconPadding"))));
this.lblWorkspan2H.Name = "lblWorkspan2H";
//
// lblWorkspan2
//
resources.ApplyResources(this.lblWorkspan2, "lblWorkspan2");
this.erpValidation.SetError(this.lblWorkspan2, resources.GetString("lblWorkspan2.Error"));
this.erpValidation.SetIconAlignment(this.lblWorkspan2, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblWorkspan2.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblWorkspan2, ((int)(resources.GetObject("lblWorkspan2.IconPadding"))));
this.lblWorkspan2.Name = "lblWorkspan2";
//
// lblWorkSpan1H
//
resources.ApplyResources(this.lblWorkSpan1H, "lblWorkSpan1H");
this.erpValidation.SetError(this.lblWorkSpan1H, resources.GetString("lblWorkSpan1H.Error"));
this.erpValidation.SetIconAlignment(this.lblWorkSpan1H, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblWorkSpan1H.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblWorkSpan1H, ((int)(resources.GetObject("lblWorkSpan1H.IconPadding"))));
this.lblWorkSpan1H.Name = "lblWorkSpan1H";
//
// lblAdder1
//
resources.ApplyResources(this.lblAdder1, "lblAdder1");
this.erpValidation.SetError(this.lblAdder1, resources.GetString("lblAdder1.Error"));
this.erpValidation.SetIconAlignment(this.lblAdder1, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblAdder1.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblAdder1, ((int)(resources.GetObject("lblAdder1.IconPadding"))));
this.lblAdder1.Name = "lblAdder1";
//
// lblWorkspan1
//
resources.ApplyResources(this.lblWorkspan1, "lblWorkspan1");
this.erpValidation.SetError(this.lblWorkspan1, resources.GetString("lblWorkspan1.Error"));
this.erpValidation.SetIconAlignment(this.lblWorkspan1, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblWorkspan1.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblWorkspan1, ((int)(resources.GetObject("lblWorkspan1.IconPadding"))));
this.lblWorkspan1.Name = "lblWorkspan1";
//
// btnSelectSound
//
resources.ApplyResources(this.btnSelectSound, "btnSelectSound");
this.erpValidation.SetError(this.btnSelectSound, resources.GetString("btnSelectSound.Error"));
this.erpValidation.SetIconAlignment(this.btnSelectSound, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("btnSelectSound.IconAlignment"))));
this.erpValidation.SetIconPadding(this.btnSelectSound, ((int)(resources.GetObject("btnSelectSound.IconPadding"))));
this.btnSelectSound.Name = "btnSelectSound";
this.btnSelectSound.UseVisualStyleBackColor = true;
this.btnSelectSound.Click += new System.EventHandler(this.BtnSelectSound_Click);
//
// dlgSelectSound
//
resources.ApplyResources(this.dlgSelectSound, "dlgSelectSound");
//
// lblSoundFile
//
resources.ApplyResources(this.lblSoundFile, "lblSoundFile");
this.lblSoundFile.AutoEllipsis = true;
this.erpValidation.SetError(this.lblSoundFile, resources.GetString("lblSoundFile.Error"));
this.erpValidation.SetIconAlignment(this.lblSoundFile, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblSoundFile.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblSoundFile, ((int)(resources.GetObject("lblSoundFile.IconPadding"))));
this.lblSoundFile.Name = "lblSoundFile";
//
// tbcOptions
//
resources.ApplyResources(this.tbcOptions, "tbcOptions");
this.tbcOptions.Controls.Add(this.tbpMisc);
this.tbcOptions.Controls.Add(this.tbpTimePeriods);
this.tbcOptions.Controls.Add(this.tbpNotifications);
this.tbcOptions.Controls.Add(this.tbpClocking);
this.erpValidation.SetError(this.tbcOptions, resources.GetString("tbcOptions.Error"));
this.erpValidation.SetIconAlignment(this.tbcOptions, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("tbcOptions.IconAlignment"))));
this.erpValidation.SetIconPadding(this.tbcOptions, ((int)(resources.GetObject("tbcOptions.IconPadding"))));
this.tbcOptions.Name = "tbcOptions";
this.tbcOptions.SelectedIndex = 0;
//
// tbpMisc
//
resources.ApplyResources(this.tbpMisc, "tbpMisc");
this.tbpMisc.Controls.Add(this.btnHotkeys);
this.tbpMisc.Controls.Add(this.lblHotkeys);
this.tbpMisc.Controls.Add(this.grpArrivalOffsets);
this.tbpMisc.Controls.Add(this.cbxFlatIcon);
this.tbpMisc.Controls.Add(this.cbxMinimized);
this.tbpMisc.Controls.Add(this.cbxAutoLaunch);
this.tbpMisc.Controls.Add(this.grpLastSession);
this.tbpMisc.Controls.Add(this.cbxLowPowerIsStart);
this.erpValidation.SetError(this.tbpMisc, resources.GetString("tbpMisc.Error"));
this.erpValidation.SetIconAlignment(this.tbpMisc, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("tbpMisc.IconAlignment"))));
this.erpValidation.SetIconPadding(this.tbpMisc, ((int)(resources.GetObject("tbpMisc.IconPadding"))));
this.tbpMisc.Name = "tbpMisc";
this.tbpMisc.UseVisualStyleBackColor = true;
//
// btnHotkeys
//
resources.ApplyResources(this.btnHotkeys, "btnHotkeys");
this.erpValidation.SetError(this.btnHotkeys, resources.GetString("btnHotkeys.Error"));
this.erpValidation.SetIconAlignment(this.btnHotkeys, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("btnHotkeys.IconAlignment"))));
this.erpValidation.SetIconPadding(this.btnHotkeys, ((int)(resources.GetObject("btnHotkeys.IconPadding"))));
this.btnHotkeys.Name = "btnHotkeys";
this.btnHotkeys.UseVisualStyleBackColor = true;
this.btnHotkeys.Click += new System.EventHandler(this.BtnHotkeys_Click);
//
// lblHotkeys
//
resources.ApplyResources(this.lblHotkeys, "lblHotkeys");
this.erpValidation.SetError(this.lblHotkeys, resources.GetString("lblHotkeys.Error"));
this.erpValidation.SetIconAlignment(this.lblHotkeys, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblHotkeys.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblHotkeys, ((int)(resources.GetObject("lblHotkeys.IconPadding"))));
this.lblHotkeys.Name = "lblHotkeys";
//
// grpArrivalOffsets
//
resources.ApplyResources(this.grpArrivalOffsets, "grpArrivalOffsets");
this.grpArrivalOffsets.Controls.Add(this.lblSessionResetMin);
this.grpArrivalOffsets.Controls.Add(this.lblArrivalMin);
this.grpArrivalOffsets.Controls.Add(this.nmcSessionReset);
this.grpArrivalOffsets.Controls.Add(this.lblSessionReset);
this.grpArrivalOffsets.Controls.Add(this.nmcArrival);
this.grpArrivalOffsets.Controls.Add(this.lblArrival);
this.grpArrivalOffsets.Controls.Add(this.lblArrivalOffsets);
this.erpValidation.SetError(this.grpArrivalOffsets, resources.GetString("grpArrivalOffsets.Error"));
this.erpValidation.SetIconAlignment(this.grpArrivalOffsets, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("grpArrivalOffsets.IconAlignment"))));
this.erpValidation.SetIconPadding(this.grpArrivalOffsets, ((int)(resources.GetObject("grpArrivalOffsets.IconPadding"))));
this.grpArrivalOffsets.Name = "grpArrivalOffsets";
this.grpArrivalOffsets.TabStop = false;
//
// lblSessionResetMin
//
resources.ApplyResources(this.lblSessionResetMin, "lblSessionResetMin");
this.erpValidation.SetError(this.lblSessionResetMin, resources.GetString("lblSessionResetMin.Error"));
this.erpValidation.SetIconAlignment(this.lblSessionResetMin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblSessionResetMin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblSessionResetMin, ((int)(resources.GetObject("lblSessionResetMin.IconPadding"))));
this.lblSessionResetMin.Name = "lblSessionResetMin";
//
// lblArrivalMin
//
resources.ApplyResources(this.lblArrivalMin, "lblArrivalMin");
this.erpValidation.SetError(this.lblArrivalMin, resources.GetString("lblArrivalMin.Error"));
this.erpValidation.SetIconAlignment(this.lblArrivalMin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblArrivalMin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblArrivalMin, ((int)(resources.GetObject("lblArrivalMin.IconPadding"))));
this.lblArrivalMin.Name = "lblArrivalMin";
//
// nmcSessionReset
//
resources.ApplyResources(this.nmcSessionReset, "nmcSessionReset");
this.nmcSessionReset.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "SessionResetTimeOffset", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcSessionReset, resources.GetString("nmcSessionReset.Error"));
this.erpValidation.SetIconAlignment(this.nmcSessionReset, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcSessionReset.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcSessionReset, ((int)(resources.GetObject("nmcSessionReset.IconPadding"))));
this.nmcSessionReset.Maximum = new decimal(new int[] {
30,
0,
0,
0});
this.nmcSessionReset.Name = "nmcSessionReset";
this.nmcSessionReset.Value = global::ClockIn.Properties.Settings.Default.SessionResetTimeOffset;
//
// lblSessionReset
//
resources.ApplyResources(this.lblSessionReset, "lblSessionReset");
this.erpValidation.SetError(this.lblSessionReset, resources.GetString("lblSessionReset.Error"));
this.erpValidation.SetIconAlignment(this.lblSessionReset, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblSessionReset.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblSessionReset, ((int)(resources.GetObject("lblSessionReset.IconPadding"))));
this.lblSessionReset.Name = "lblSessionReset";
//
// nmcArrival
//
resources.ApplyResources(this.nmcArrival, "nmcArrival");
this.nmcArrival.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "ArrivalTimeOffset", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcArrival, resources.GetString("nmcArrival.Error"));
this.erpValidation.SetIconAlignment(this.nmcArrival, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcArrival.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcArrival, ((int)(resources.GetObject("nmcArrival.IconPadding"))));
this.nmcArrival.Maximum = new decimal(new int[] {
30,
0,
0,
0});
this.nmcArrival.Name = "nmcArrival";
this.nmcArrival.Value = global::ClockIn.Properties.Settings.Default.ArrivalTimeOffset;
//
// lblArrival
//
resources.ApplyResources(this.lblArrival, "lblArrival");
this.erpValidation.SetError(this.lblArrival, resources.GetString("lblArrival.Error"));
this.erpValidation.SetIconAlignment(this.lblArrival, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblArrival.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblArrival, ((int)(resources.GetObject("lblArrival.IconPadding"))));
this.lblArrival.Name = "lblArrival";
//
// lblArrivalOffsets
//
resources.ApplyResources(this.lblArrivalOffsets, "lblArrivalOffsets");
this.erpValidation.SetError(this.lblArrivalOffsets, resources.GetString("lblArrivalOffsets.Error"));
this.erpValidation.SetIconAlignment(this.lblArrivalOffsets, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblArrivalOffsets.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblArrivalOffsets, ((int)(resources.GetObject("lblArrivalOffsets.IconPadding"))));
this.lblArrivalOffsets.Name = "lblArrivalOffsets";
//
// cbxFlatIcon
//
resources.ApplyResources(this.cbxFlatIcon, "cbxFlatIcon");
this.cbxFlatIcon.Checked = global::ClockIn.Properties.Settings.Default.FlatIconOnNewWindows;
this.cbxFlatIcon.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxFlatIcon.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "FlatIconOnNewWindows", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxFlatIcon, resources.GetString("cbxFlatIcon.Error"));
this.erpValidation.SetIconAlignment(this.cbxFlatIcon, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxFlatIcon.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxFlatIcon, ((int)(resources.GetObject("cbxFlatIcon.IconPadding"))));
this.cbxFlatIcon.Name = "cbxFlatIcon";
this.cbxFlatIcon.UseVisualStyleBackColor = true;
//
// cbxMinimized
//
resources.ApplyResources(this.cbxMinimized, "cbxMinimized");
this.cbxMinimized.Checked = global::ClockIn.Properties.Settings.Default.StartMinimized;
this.cbxMinimized.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "StartMinimized", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxMinimized, resources.GetString("cbxMinimized.Error"));
this.erpValidation.SetIconAlignment(this.cbxMinimized, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxMinimized.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxMinimized, ((int)(resources.GetObject("cbxMinimized.IconPadding"))));
this.cbxMinimized.Name = "cbxMinimized";
this.cbxMinimized.UseVisualStyleBackColor = true;
//
// cbxLowPowerIsStart
//
resources.ApplyResources(this.cbxLowPowerIsStart, "cbxLowPowerIsStart");
this.cbxLowPowerIsStart.Checked = global::ClockIn.Properties.Settings.Default.LowPowerIsStart;
this.cbxLowPowerIsStart.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "LowPowerIsStart", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxLowPowerIsStart, resources.GetString("cbxLowPowerIsStart.Error"));
this.erpValidation.SetIconAlignment(this.cbxLowPowerIsStart, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxLowPowerIsStart.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxLowPowerIsStart, ((int)(resources.GetObject("cbxLowPowerIsStart.IconPadding"))));
this.cbxLowPowerIsStart.Name = "cbxLowPowerIsStart";
this.cbxLowPowerIsStart.UseVisualStyleBackColor = true;
//
// tbpTimePeriods
//
resources.ApplyResources(this.tbpTimePeriods, "tbpTimePeriods");
this.tbpTimePeriods.Controls.Add(this.lblRegularTimeH);
this.tbpTimePeriods.Controls.Add(this.grpBreaksPeriod);
this.tbpTimePeriods.Controls.Add(this.lblRegularTime);
this.tbpTimePeriods.Controls.Add(this.lblMaxTime);
this.tbpTimePeriods.Controls.Add(this.lblMaxTimeH);
this.tbpTimePeriods.Controls.Add(this.grpOtherPeriod);
this.tbpTimePeriods.Controls.Add(this.nmcRegularTime);
this.tbpTimePeriods.Controls.Add(this.nmcMaxTime);
this.erpValidation.SetError(this.tbpTimePeriods, resources.GetString("tbpTimePeriods.Error"));
this.erpValidation.SetIconAlignment(this.tbpTimePeriods, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("tbpTimePeriods.IconAlignment"))));
this.erpValidation.SetIconPadding(this.tbpTimePeriods, ((int)(resources.GetObject("tbpTimePeriods.IconPadding"))));
this.tbpTimePeriods.Name = "tbpTimePeriods";
this.tbpTimePeriods.UseVisualStyleBackColor = true;
//
// grpOtherPeriod
//
resources.ApplyResources(this.grpOtherPeriod, "grpOtherPeriod");
this.grpOtherPeriod.Controls.Add(this.lblAdder2Min);
this.grpOtherPeriod.Controls.Add(this.nmcAdder1);
this.grpOtherPeriod.Controls.Add(this.lblAdder1Min);
this.grpOtherPeriod.Controls.Add(this.nmcAdder2);
this.grpOtherPeriod.Controls.Add(this.lblAdder2);
this.grpOtherPeriod.Controls.Add(this.lblWorkSpan1H);
this.grpOtherPeriod.Controls.Add(this.lblWorkspan2H);
this.grpOtherPeriod.Controls.Add(this.lblWorkspan2);
this.grpOtherPeriod.Controls.Add(this.lblWorkspan1);
this.grpOtherPeriod.Controls.Add(this.nmcWorkspan1);
this.grpOtherPeriod.Controls.Add(this.nmcWorkspan2);
this.grpOtherPeriod.Controls.Add(this.lblAdder1);
this.erpValidation.SetError(this.grpOtherPeriod, resources.GetString("grpOtherPeriod.Error"));
this.erpValidation.SetIconAlignment(this.grpOtherPeriod, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("grpOtherPeriod.IconAlignment"))));
this.erpValidation.SetIconPadding(this.grpOtherPeriod, ((int)(resources.GetObject("grpOtherPeriod.IconPadding"))));
this.grpOtherPeriod.Name = "grpOtherPeriod";
this.grpOtherPeriod.TabStop = false;
//
// nmcAdder1
//
resources.ApplyResources(this.nmcAdder1, "nmcAdder1");
this.nmcAdder1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "OutsideLunchBreak1", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcAdder1, resources.GetString("nmcAdder1.Error"));
this.erpValidation.SetIconAlignment(this.nmcAdder1, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcAdder1.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcAdder1, ((int)(resources.GetObject("nmcAdder1.IconPadding"))));
this.nmcAdder1.Maximum = new decimal(new int[] {
180,
0,
0,
0});
this.nmcAdder1.Name = "nmcAdder1";
this.nmcAdder1.Value = global::ClockIn.Properties.Settings.Default.OutsideLunchBreak1;
this.nmcAdder1.Validating += new System.ComponentModel.CancelEventHandler(this.NmcAdder1_Validating);
//
// nmcAdder2
//
resources.ApplyResources(this.nmcAdder2, "nmcAdder2");
this.nmcAdder2.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "OutsideLunchBreak2", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcAdder2, resources.GetString("nmcAdder2.Error"));
this.erpValidation.SetIconAlignment(this.nmcAdder2, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcAdder2.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcAdder2, ((int)(resources.GetObject("nmcAdder2.IconPadding"))));
this.nmcAdder2.Maximum = new decimal(new int[] {
180,
0,
0,
0});
this.nmcAdder2.Name = "nmcAdder2";
this.nmcAdder2.Value = global::ClockIn.Properties.Settings.Default.OutsideLunchBreak2;
this.nmcAdder2.Validating += new System.ComponentModel.CancelEventHandler(this.NmcAdder2_Validating);
//
// nmcWorkspan1
//
resources.ApplyResources(this.nmcWorkspan1, "nmcWorkspan1");
this.nmcWorkspan1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "OutsideLunchWorkspan1", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.nmcWorkspan1.DecimalPlaces = 1;
this.erpValidation.SetError(this.nmcWorkspan1, resources.GetString("nmcWorkspan1.Error"));
this.erpValidation.SetIconAlignment(this.nmcWorkspan1, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcWorkspan1.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcWorkspan1, ((int)(resources.GetObject("nmcWorkspan1.IconPadding"))));
this.nmcWorkspan1.Increment = new decimal(new int[] {
5,
0,
0,
65536});
this.nmcWorkspan1.Maximum = new decimal(new int[] {
24,
0,
0,
0});
this.nmcWorkspan1.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nmcWorkspan1.Name = "nmcWorkspan1";
this.nmcWorkspan1.Value = global::ClockIn.Properties.Settings.Default.OutsideLunchWorkspan1;
this.nmcWorkspan1.Validating += new System.ComponentModel.CancelEventHandler(this.NmcWorkspan1_Validating);
//
// nmcWorkspan2
//
resources.ApplyResources(this.nmcWorkspan2, "nmcWorkspan2");
this.nmcWorkspan2.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "OutsideLunchWorkspan2", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.nmcWorkspan2.DecimalPlaces = 1;
this.erpValidation.SetError(this.nmcWorkspan2, resources.GetString("nmcWorkspan2.Error"));
this.erpValidation.SetIconAlignment(this.nmcWorkspan2, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcWorkspan2.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcWorkspan2, ((int)(resources.GetObject("nmcWorkspan2.IconPadding"))));
this.nmcWorkspan2.Increment = new decimal(new int[] {
5,
0,
0,
65536});
this.nmcWorkspan2.Maximum = new decimal(new int[] {
24,
0,
0,
0});
this.nmcWorkspan2.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nmcWorkspan2.Name = "nmcWorkspan2";
this.nmcWorkspan2.Value = global::ClockIn.Properties.Settings.Default.OutsideLunchWorkspan2;
this.nmcWorkspan2.Validating += new System.ComponentModel.CancelEventHandler(this.NmcWorkspan2_Validating);
//
// nmcRegularTime
//
resources.ApplyResources(this.nmcRegularTime, "nmcRegularTime");
this.nmcRegularTime.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "RegularWorkingTime", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.nmcRegularTime.DecimalPlaces = 1;
this.erpValidation.SetError(this.nmcRegularTime, resources.GetString("nmcRegularTime.Error"));
this.erpValidation.SetIconAlignment(this.nmcRegularTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcRegularTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcRegularTime, ((int)(resources.GetObject("nmcRegularTime.IconPadding"))));
this.nmcRegularTime.Increment = new decimal(new int[] {
5,
0,
0,
65536});
this.nmcRegularTime.Maximum = new decimal(new int[] {
24,
0,
0,
0});
this.nmcRegularTime.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nmcRegularTime.Name = "nmcRegularTime";
this.nmcRegularTime.Value = global::ClockIn.Properties.Settings.Default.RegularWorkingTime;
this.nmcRegularTime.Validating += new System.ComponentModel.CancelEventHandler(this.NmcRegularTime_Validating);
//
// nmcMaxTime
//
resources.ApplyResources(this.nmcMaxTime, "nmcMaxTime");
this.nmcMaxTime.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "MaximumWorkingTime", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.nmcMaxTime.DecimalPlaces = 1;
this.erpValidation.SetError(this.nmcMaxTime, resources.GetString("nmcMaxTime.Error"));
this.erpValidation.SetIconAlignment(this.nmcMaxTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcMaxTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcMaxTime, ((int)(resources.GetObject("nmcMaxTime.IconPadding"))));
this.nmcMaxTime.Increment = new decimal(new int[] {
5,
0,
0,
65536});
this.nmcMaxTime.Maximum = new decimal(new int[] {
24,
0,
0,
0});
this.nmcMaxTime.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nmcMaxTime.Name = "nmcMaxTime";
this.nmcMaxTime.Value = global::ClockIn.Properties.Settings.Default.MaximumWorkingTime;
this.nmcMaxTime.Validating += new System.ComponentModel.CancelEventHandler(this.NmcMaxTime_Validating);
//
// tbpNotifications
//
resources.ApplyResources(this.tbpNotifications, "tbpNotifications");
this.tbpNotifications.Controls.Add(this.grpWorkingTime);
this.tbpNotifications.Controls.Add(this.cbxNotifyOnClockInOut);
this.erpValidation.SetError(this.tbpNotifications, resources.GetString("tbpNotifications.Error"));
this.erpValidation.SetIconAlignment(this.tbpNotifications, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("tbpNotifications.IconAlignment"))));
this.erpValidation.SetIconPadding(this.tbpNotifications, ((int)(resources.GetObject("tbpNotifications.IconPadding"))));
this.tbpNotifications.Name = "tbpNotifications";
this.tbpNotifications.UseVisualStyleBackColor = true;
//
// grpWorkingTime
//
resources.ApplyResources(this.grpWorkingTime, "grpWorkingTime");
this.grpWorkingTime.Controls.Add(this.cbxNotifyRegularTime);
this.grpWorkingTime.Controls.Add(this.cbxSystemNotifications);
this.grpWorkingTime.Controls.Add(this.nmcNotifyRegAdvance);
this.grpWorkingTime.Controls.Add(this.lblMinBeforeReg);
this.grpWorkingTime.Controls.Add(this.cbxNotificationAlwayOnTop);
this.grpWorkingTime.Controls.Add(this.nmcNotifyMaxAdvance);
this.grpWorkingTime.Controls.Add(this.btnSelectSound);
this.grpWorkingTime.Controls.Add(this.lblSoundFile);
this.grpWorkingTime.Controls.Add(this.lblMinBeforeMax);
this.grpWorkingTime.Controls.Add(this.cbxPlaySound);
this.grpWorkingTime.Controls.Add(this.cbxNotifyMaxTime);
this.erpValidation.SetError(this.grpWorkingTime, resources.GetString("grpWorkingTime.Error"));
this.erpValidation.SetIconAlignment(this.grpWorkingTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("grpWorkingTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.grpWorkingTime, ((int)(resources.GetObject("grpWorkingTime.IconPadding"))));
this.grpWorkingTime.Name = "grpWorkingTime";
this.grpWorkingTime.TabStop = false;
//
// cbxNotifyRegularTime
//
resources.ApplyResources(this.cbxNotifyRegularTime, "cbxNotifyRegularTime");
this.cbxNotifyRegularTime.Checked = global::ClockIn.Properties.Settings.Default.NotifyOnRegularLimit;
this.cbxNotifyRegularTime.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxNotifyRegularTime.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "NotifyOnRegularLimit", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxNotifyRegularTime, resources.GetString("cbxNotifyRegularTime.Error"));
this.erpValidation.SetIconAlignment(this.cbxNotifyRegularTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxNotifyRegularTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxNotifyRegularTime, ((int)(resources.GetObject("cbxNotifyRegularTime.IconPadding"))));
this.cbxNotifyRegularTime.Name = "cbxNotifyRegularTime";
this.cbxNotifyRegularTime.UseVisualStyleBackColor = true;
//
// cbxSystemNotifications
//
resources.ApplyResources(this.cbxSystemNotifications, "cbxSystemNotifications");
this.cbxSystemNotifications.Checked = global::ClockIn.Properties.Settings.Default.SystemNotifications;
this.cbxSystemNotifications.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "SystemNotifications", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxSystemNotifications, resources.GetString("cbxSystemNotifications.Error"));
this.erpValidation.SetIconAlignment(this.cbxSystemNotifications, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxSystemNotifications.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxSystemNotifications, ((int)(resources.GetObject("cbxSystemNotifications.IconPadding"))));
this.cbxSystemNotifications.Name = "cbxSystemNotifications";
this.cbxSystemNotifications.UseVisualStyleBackColor = true;
//
// nmcNotifyRegAdvance
//
resources.ApplyResources(this.nmcNotifyRegAdvance, "nmcNotifyRegAdvance");
this.nmcNotifyRegAdvance.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "NotifyRegAdvance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcNotifyRegAdvance, resources.GetString("nmcNotifyRegAdvance.Error"));
this.erpValidation.SetIconAlignment(this.nmcNotifyRegAdvance, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcNotifyRegAdvance.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcNotifyRegAdvance, ((int)(resources.GetObject("nmcNotifyRegAdvance.IconPadding"))));
this.nmcNotifyRegAdvance.Maximum = new decimal(new int[] {
60,
0,
0,
0});
this.nmcNotifyRegAdvance.Name = "nmcNotifyRegAdvance";
this.nmcNotifyRegAdvance.Value = global::ClockIn.Properties.Settings.Default.NotifyRegAdvance;
//
// lblMinBeforeReg
//
resources.ApplyResources(this.lblMinBeforeReg, "lblMinBeforeReg");
this.erpValidation.SetError(this.lblMinBeforeReg, resources.GetString("lblMinBeforeReg.Error"));
this.erpValidation.SetIconAlignment(this.lblMinBeforeReg, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblMinBeforeReg.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblMinBeforeReg, ((int)(resources.GetObject("lblMinBeforeReg.IconPadding"))));
this.lblMinBeforeReg.Name = "lblMinBeforeReg";
//
// cbxNotificationAlwayOnTop
//
resources.ApplyResources(this.cbxNotificationAlwayOnTop, "cbxNotificationAlwayOnTop");
this.cbxNotificationAlwayOnTop.Checked = global::ClockIn.Properties.Settings.Default.NotificationAlwaysOnTop;
this.cbxNotificationAlwayOnTop.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxNotificationAlwayOnTop.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "NotificationAlwaysOnTop", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxNotificationAlwayOnTop, resources.GetString("cbxNotificationAlwayOnTop.Error"));
this.erpValidation.SetIconAlignment(this.cbxNotificationAlwayOnTop, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxNotificationAlwayOnTop.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxNotificationAlwayOnTop, ((int)(resources.GetObject("cbxNotificationAlwayOnTop.IconPadding"))));
this.cbxNotificationAlwayOnTop.Name = "cbxNotificationAlwayOnTop";
this.cbxNotificationAlwayOnTop.UseVisualStyleBackColor = true;
//
// nmcNotifyMaxAdvance
//
resources.ApplyResources(this.nmcNotifyMaxAdvance, "nmcNotifyMaxAdvance");
this.nmcNotifyMaxAdvance.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::ClockIn.Properties.Settings.Default, "NotifyAdvance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.nmcNotifyMaxAdvance, resources.GetString("nmcNotifyMaxAdvance.Error"));
this.erpValidation.SetIconAlignment(this.nmcNotifyMaxAdvance, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nmcNotifyMaxAdvance.IconAlignment"))));
this.erpValidation.SetIconPadding(this.nmcNotifyMaxAdvance, ((int)(resources.GetObject("nmcNotifyMaxAdvance.IconPadding"))));
this.nmcNotifyMaxAdvance.Maximum = new decimal(new int[] {
60,
0,
0,
0});
this.nmcNotifyMaxAdvance.Name = "nmcNotifyMaxAdvance";
this.nmcNotifyMaxAdvance.Value = global::ClockIn.Properties.Settings.Default.NotifyAdvance;
//
// cbxPlaySound
//
resources.ApplyResources(this.cbxPlaySound, "cbxPlaySound");
this.cbxPlaySound.Checked = global::ClockIn.Properties.Settings.Default.PlaySound;
this.cbxPlaySound.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxPlaySound.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "PlaySound", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxPlaySound, resources.GetString("cbxPlaySound.Error"));
this.erpValidation.SetIconAlignment(this.cbxPlaySound, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxPlaySound.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxPlaySound, ((int)(resources.GetObject("cbxPlaySound.IconPadding"))));
this.cbxPlaySound.Name = "cbxPlaySound";
this.cbxPlaySound.UseVisualStyleBackColor = true;
//
// cbxNotifyMaxTime
//
resources.ApplyResources(this.cbxNotifyMaxTime, "cbxNotifyMaxTime");
this.cbxNotifyMaxTime.Checked = global::ClockIn.Properties.Settings.Default.NotifyOnMaximumLimit;
this.cbxNotifyMaxTime.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxNotifyMaxTime.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "NotifyOnMaximumLimit", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxNotifyMaxTime, resources.GetString("cbxNotifyMaxTime.Error"));
this.erpValidation.SetIconAlignment(this.cbxNotifyMaxTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxNotifyMaxTime.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxNotifyMaxTime, ((int)(resources.GetObject("cbxNotifyMaxTime.IconPadding"))));
this.cbxNotifyMaxTime.Name = "cbxNotifyMaxTime";
this.cbxNotifyMaxTime.UseVisualStyleBackColor = true;
//
// cbxNotifyOnClockInOut
//
resources.ApplyResources(this.cbxNotifyOnClockInOut, "cbxNotifyOnClockInOut");
this.cbxNotifyOnClockInOut.Checked = global::ClockIn.Properties.Settings.Default.NotifyOnClockInOut;
this.cbxNotifyOnClockInOut.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxNotifyOnClockInOut.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ClockIn.Properties.Settings.Default, "NotifyOnClockInOut", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.erpValidation.SetError(this.cbxNotifyOnClockInOut, resources.GetString("cbxNotifyOnClockInOut.Error"));
this.erpValidation.SetIconAlignment(this.cbxNotifyOnClockInOut, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cbxNotifyOnClockInOut.IconAlignment"))));
this.erpValidation.SetIconPadding(this.cbxNotifyOnClockInOut, ((int)(resources.GetObject("cbxNotifyOnClockInOut.IconPadding"))));
this.cbxNotifyOnClockInOut.Name = "cbxNotifyOnClockInOut";
this.cbxNotifyOnClockInOut.UseVisualStyleBackColor = true;
//
// tbpClocking
//
resources.ApplyResources(this.tbpClocking, "tbpClocking");
this.tbpClocking.Controls.Add(this.grpClockingOffsets);
this.tbpClocking.Controls.Add(this.cbxAskForClockIn);
this.tbpClocking.Controls.Add(this.cbxClockInAtUnlock);
this.tbpClocking.Controls.Add(this.cbxConfirmOnClockIn);
this.tbpClocking.Controls.Add(this.cbxMinimizeOnClockOut);
this.tbpClocking.Controls.Add(this.cbxClockInAtStart);
this.tbpClocking.Controls.Add(this.cbxClockInAtWakeup);
this.erpValidation.SetError(this.tbpClocking, resources.GetString("tbpClocking.Error"));
this.erpValidation.SetIconAlignment(this.tbpClocking, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("tbpClocking.IconAlignment"))));
this.erpValidation.SetIconPadding(this.tbpClocking, ((int)(resources.GetObject("tbpClocking.IconPadding"))));
this.tbpClocking.Name = "tbpClocking";
this.tbpClocking.UseVisualStyleBackColor = true;
//
// grpClockingOffsets
//
resources.ApplyResources(this.grpClockingOffsets, "grpClockingOffsets");
this.grpClockingOffsets.Controls.Add(this.lblAbsenceOffsets);
this.grpClockingOffsets.Controls.Add(this.lblClockOutMin);
this.grpClockingOffsets.Controls.Add(this.lblClockIn);
this.grpClockingOffsets.Controls.Add(this.lblClockInMin);
this.grpClockingOffsets.Controls.Add(this.nmcClockIn);
this.grpClockingOffsets.Controls.Add(this.nmcClockOut);
this.grpClockingOffsets.Controls.Add(this.lblClockOut);
this.erpValidation.SetError(this.grpClockingOffsets, resources.GetString("grpClockingOffsets.Error"));
this.erpValidation.SetIconAlignment(this.grpClockingOffsets, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("grpClockingOffsets.IconAlignment"))));
this.erpValidation.SetIconPadding(this.grpClockingOffsets, ((int)(resources.GetObject("grpClockingOffsets.IconPadding"))));
this.grpClockingOffsets.Name = "grpClockingOffsets";
this.grpClockingOffsets.TabStop = false;
//
// lblAbsenceOffsets
//
resources.ApplyResources(this.lblAbsenceOffsets, "lblAbsenceOffsets");
this.erpValidation.SetError(this.lblAbsenceOffsets, resources.GetString("lblAbsenceOffsets.Error"));
this.erpValidation.SetIconAlignment(this.lblAbsenceOffsets, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblAbsenceOffsets.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblAbsenceOffsets, ((int)(resources.GetObject("lblAbsenceOffsets.IconPadding"))));
this.lblAbsenceOffsets.Name = "lblAbsenceOffsets";
//
// lblClockOutMin
//
resources.ApplyResources(this.lblClockOutMin, "lblClockOutMin");
this.erpValidation.SetError(this.lblClockOutMin, resources.GetString("lblClockOutMin.Error"));
this.erpValidation.SetIconAlignment(this.lblClockOutMin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblClockOutMin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblClockOutMin, ((int)(resources.GetObject("lblClockOutMin.IconPadding"))));
this.lblClockOutMin.Name = "lblClockOutMin";
//
// lblClockIn
//
resources.ApplyResources(this.lblClockIn, "lblClockIn");
this.erpValidation.SetError(this.lblClockIn, resources.GetString("lblClockIn.Error"));
this.erpValidation.SetIconAlignment(this.lblClockIn, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblClockIn.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblClockIn, ((int)(resources.GetObject("lblClockIn.IconPadding"))));
this.lblClockIn.Name = "lblClockIn";
//
// lblClockInMin
//
resources.ApplyResources(this.lblClockInMin, "lblClockInMin");
this.erpValidation.SetError(this.lblClockInMin, resources.GetString("lblClockInMin.Error"));
this.erpValidation.SetIconAlignment(this.lblClockInMin, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("lblClockInMin.IconAlignment"))));
this.erpValidation.SetIconPadding(this.lblClockInMin, ((int)(resources.GetObject("lblClockInMin.IconPadding"))));
this.lblClockInMin.Name = "lblClockInMin";
//
// nmcClockIn
//
resources.ApplyResources(this.nmcClockIn, "nmcClockIn");