summaryrefslogtreecommitdiff
path: root/Aktywator/MainForm.Designer.cs
blob: 59a8b735b11c99f33ee2ce5cd7062178e9f564ad (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
namespace Aktywator
{
    partial class MainForm
    {
        /// <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.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.open = new System.Windows.Forms.OpenFileDialog();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.status1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.status2 = new System.Windows.Forms.ToolStripStatusLabel();
            this.status3 = new System.Windows.Forms.ToolStripStatusLabel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.statusStrip2 = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.lRequiredVersion = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
            this.lDetectedVersion = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
            this.lRequiredFirmware = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStrip2 = new System.Windows.Forms.ToolStrip();
            this.bLoad = new System.Windows.Forms.ToolStripButton();
            this.bSave = new System.Windows.Forms.ToolStripButton();
            this.groupBox7 = new System.Windows.Forms.GroupBox();
            this.xResetFunctionKey = new System.Windows.Forms.CheckBox();
            this.label2 = new System.Windows.Forms.Label();
            this.xPINcode = new System.Windows.Forms.TextBox();
            this.xConfirmNP = new System.Windows.Forms.CheckBox();
            this.xScoreCorrection = new System.Windows.Forms.CheckBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.xAutoShutDownBPC = new System.Windows.Forms.CheckBox();
            this.xRemainingBoards = new System.Windows.Forms.CheckBox();
            this.xNextSeatings = new System.Windows.Forms.CheckBox();
            this.xScoreRecap = new System.Windows.Forms.CheckBox();
            this.xAutoShowScoreRecap = new System.Windows.Forms.CheckBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.xCheckLeadCard = new System.Windows.Forms.CheckBox();
            this.xLeadCard = new System.Windows.Forms.CheckBox();
            this.xViewHandrecord = new System.Windows.Forms.CheckBox();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.xGroupSections = new System.Windows.Forms.CheckBox();
            this.xShowResults = new System.Windows.Forms.CheckBox();
            this.xRepeatResults = new System.Windows.Forms.CheckBox();
            this.xShowPercentage = new System.Windows.Forms.CheckBox();
            this.xShowContract = new System.Windows.Forms.CheckBox();
            this.xResultsOverview = new System.Windows.Forms.ComboBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.xCollectPlay = new System.Windows.Forms.CheckBox();
            this.xBoardOrderVerification = new System.Windows.Forms.CheckBox();
            this.xIntermediateResults = new System.Windows.Forms.CheckBox();
            this.xAutoBoardNumber = new System.Windows.Forms.CheckBox();
            this.xCollectBidding = new System.Windows.Forms.CheckBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.xMemberNumbers = new System.Windows.Forms.CheckBox();
            this.xShowPairNumbers = new System.Windows.Forms.CheckBox();
            this.xMemberNumbersNoBlankEntry = new System.Windows.Forms.CheckBox();
            this.xShowPlayerNames = new System.Windows.Forms.CheckBox();
            this.label1 = new System.Windows.Forms.Label();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.bRRBTournament = new System.Windows.Forms.Button();
            this.label9 = new System.Windows.Forms.Label();
            this.eOomRounds = new System.Windows.Forms.TextBox();
            this.bForceSync = new System.Windows.Forms.Button();
            this.lNazwyTeamow = new System.Windows.Forms.Label();
            this.lSkok = new System.Windows.Forms.Label();
            this.eInterval = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.bTruncate = new System.Windows.Forms.Button();
            this.bMysqlSettings = new System.Windows.Forms.Button();
            this.label8 = new System.Windows.Forms.Label();
            this.bAutoSync = new System.Windows.Forms.Button();
            this.bSync = new System.Windows.Forms.Button();
            this.lTables = new System.Windows.Forms.Label();
            this.lSections = new System.Windows.Forms.Label();
            this.lType = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.lTournament = new System.Windows.Forms.Label();
            this.bMySQLTournament = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.bClearHands = new System.Windows.Forms.Button();
            this.lRecordSections = new System.Windows.Forms.Label();
            this.cblSections = new System.Windows.Forms.CheckedListBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.lWczytywane = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.bLoadHands = new System.Windows.Forms.Button();
            this.timer = new System.Windows.Forms.Timer(this.components);
            this.openPBN = new System.Windows.Forms.OpenFileDialog();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.labelFilename = new System.Windows.Forms.ToolStripLabel();
            this.bLaunch = new System.Windows.Forms.ToolStripButton();
            this.bUpdateSession = new System.Windows.Forms.ToolStripButton();
            this.statusStrip1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.statusStrip2.SuspendLayout();
            this.toolStrip2.SuspendLayout();
            this.groupBox7.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // open
            // 
            this.open.Filter = "BWS|*.bws";
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.status1,
            this.status2,
            this.status3});
            this.statusStrip1.Location = new System.Drawing.Point(0, 568);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(583, 22);
            this.statusStrip1.TabIndex = 2;
            this.statusStrip1.Text = "statusBar";
            // 
            // status1
            // 
            this.status1.Name = "status1";
            this.status1.Size = new System.Drawing.Size(106, 17);
            this.status1.Text = "Michał Zimniewicz";
            // 
            // status2
            // 
            this.status2.Margin = new System.Windows.Forms.Padding(50, 3, 0, 2);
            this.status2.Name = "status2";
            this.status2.Size = new System.Drawing.Size(118, 17);
            this.status2.Text = "toolStripStatusLabel1";
            // 
            // status3
            // 
            this.status3.Margin = new System.Windows.Forms.Padding(50, 3, 0, 2);
            this.status3.Name = "status3";
            this.status3.Size = new System.Drawing.Size(118, 17);
            this.status3.Text = "toolStripStatusLabel2";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.tabControl1);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(583, 568);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.tabControl1.Location = new System.Drawing.Point(3, 28);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(577, 537);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.statusStrip2);
            this.tabPage1.Controls.Add(this.toolStrip2);
            this.tabPage1.Controls.Add(this.groupBox7);
            this.tabPage1.Controls.Add(this.groupBox6);
            this.tabPage1.Controls.Add(this.groupBox5);
            this.tabPage1.Controls.Add(this.groupBox4);
            this.tabPage1.Controls.Add(this.groupBox3);
            this.tabPage1.Controls.Add(this.groupBox2);
            this.tabPage1.Controls.Add(this.label1);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(569, 511);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Ustawienia";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // statusStrip2
            // 
            this.statusStrip2.BackColor = System.Drawing.Color.White;
            this.statusStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripStatusLabel1,
            this.lRequiredVersion,
            this.toolStripStatusLabel2,
            this.lDetectedVersion,
            this.toolStripStatusLabel3,
            this.lRequiredFirmware});
            this.statusStrip2.Location = new System.Drawing.Point(3, 486);
            this.statusStrip2.Name = "statusStrip2";
            this.statusStrip2.Size = new System.Drawing.Size(563, 22);
            this.statusStrip2.SizingGrip = false;
            this.statusStrip2.TabIndex = 46;
            this.statusStrip2.Text = "statusStrip2";
            // 
            // toolStripStatusLabel1
            // 
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(130, 17);
            this.toolStripStatusLabel1.Text = "Wymagana wersja BCS:";
            // 
            // lRequiredVersion
            // 
            this.lRequiredVersion.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.lRequiredVersion.Margin = new System.Windows.Forms.Padding(0, 3, 20, 2);
            this.lRequiredVersion.Name = "lRequiredVersion";
            this.lRequiredVersion.Padding = new System.Windows.Forms.Padding(0, 0, 10, 0);
            this.lRequiredVersion.Size = new System.Drawing.Size(44, 17);
            this.lRequiredVersion.Text = "0.0.0";
            // 
            // toolStripStatusLabel2
            // 
            this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
            this.toolStripStatusLabel2.Size = new System.Drawing.Size(113, 17);
            this.toolStripStatusLabel2.Text = "Wykryta wersja BCS:";
            // 
            // lDetectedVersion
            // 
            this.lDetectedVersion.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.lDetectedVersion.Margin = new System.Windows.Forms.Padding(0, 3, 20, 2);
            this.lDetectedVersion.Name = "lDetectedVersion";
            this.lDetectedVersion.Padding = new System.Windows.Forms.Padding(0, 0, 10, 0);
            this.lDetectedVersion.Size = new System.Drawing.Size(44, 17);
            this.lDetectedVersion.Text = "0.0.0";
            // 
            // toolStripStatusLabel3
            // 
            this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
            this.toolStripStatusLabel3.Size = new System.Drawing.Size(120, 17);
            this.toolStripStatusLabel3.Text = "Wymagany firmware:";
            // 
            // lRequiredFirmware
            // 
            this.lRequiredFirmware.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.lRequiredFirmware.Name = "lRequiredFirmware";
            this.lRequiredFirmware.Padding = new System.Windows.Forms.Padding(0, 0, 10, 0);
            this.lRequiredFirmware.Size = new System.Drawing.Size(44, 17);
            this.lRequiredFirmware.Text = "0.0.0";
            // 
            // toolStrip2
            // 
            this.toolStrip2.BackColor = System.Drawing.Color.White;
            this.toolStrip2.GripMargin = new System.Windows.Forms.Padding(0);
            this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bLoad,
            this.bSave});
            this.toolStrip2.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.toolStrip2.Location = new System.Drawing.Point(3, 3);
            this.toolStrip2.Name = "toolStrip2";
            this.toolStrip2.Size = new System.Drawing.Size(563, 25);
            this.toolStrip2.TabIndex = 45;
            this.toolStrip2.Text = "toolStrip2";
            // 
            // bLoad
            // 
            this.bLoad.Image = ((System.Drawing.Image)(resources.GetObject("bLoad.Image")));
            this.bLoad.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.bLoad.Name = "bLoad";
            this.bLoad.Size = new System.Drawing.Size(216, 22);
            this.bLoad.Text = "Ponownie wczytaj ustawienia z BWS";
            this.bLoad.Click += new System.EventHandler(this.bLoad_Click);
            // 
            // bSave
            // 
            this.bSave.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.bSave.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.bSave.Image = ((System.Drawing.Image)(resources.GetObject("bSave.Image")));
            this.bSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.bSave.Name = "bSave";
            this.bSave.Size = new System.Drawing.Size(108, 22);
            this.bSave.Text = "Zapisz do BWS";
            this.bSave.Click += new System.EventHandler(this.bSave_Click);
            // 
            // groupBox7
            // 
            this.groupBox7.Controls.Add(this.xResetFunctionKey);
            this.groupBox7.Controls.Add(this.label2);
            this.groupBox7.Controls.Add(this.xPINcode);
            this.groupBox7.Controls.Add(this.xConfirmNP);
            this.groupBox7.Controls.Add(this.xScoreCorrection);
            this.groupBox7.Location = new System.Drawing.Point(267, 355);
            this.groupBox7.Name = "groupBox7";
            this.groupBox7.Size = new System.Drawing.Size(294, 121);
            this.groupBox7.TabIndex = 44;
            this.groupBox7.TabStop = false;
            this.groupBox7.Text = "Opcje sędziowskie";
            // 
            // xResetFunctionKey
            // 
            this.xResetFunctionKey.AutoSize = true;
            this.xResetFunctionKey.Location = new System.Drawing.Point(13, 92);
            this.xResetFunctionKey.Name = "xResetFunctionKey";
            this.xResetFunctionKey.Size = new System.Drawing.Size(207, 17);
            this.xResetFunctionKey.TabIndex = 24;
            this.xResetFunctionKey.Text = "zawodnik może zresetować pierniczka";
            this.xResetFunctionKey.UseVisualStyleBackColor = true;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(10, 25);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(25, 13);
            this.label2.TabIndex = 27;
            this.label2.Text = "PIN";
            // 
            // xPINcode
            // 
            this.xPINcode.Location = new System.Drawing.Point(41, 21);
            this.xPINcode.MaxLength = 4;
            this.xPINcode.Name = "xPINcode";
            this.xPINcode.Size = new System.Drawing.Size(37, 20);
            this.xPINcode.TabIndex = 14;
            this.xPINcode.Text = "0000";
            // 
            // xConfirmNP
            // 
            this.xConfirmNP.AutoSize = true;
            this.xConfirmNP.Location = new System.Drawing.Point(13, 46);
            this.xConfirmNP.Name = "xConfirmNP";
            this.xConfirmNP.Size = new System.Drawing.Size(198, 17);
            this.xConfirmNP.TabIndex = 22;
            this.xConfirmNP.Text = "NoPlay potwierdzany przez sędziego";
            this.xConfirmNP.UseVisualStyleBackColor = true;
            // 
            // xScoreCorrection
            // 
            this.xScoreCorrection.AutoSize = true;
            this.xScoreCorrection.Location = new System.Drawing.Point(13, 69);
            this.xScoreCorrection.Name = "xScoreCorrection";
            this.xScoreCorrection.Size = new System.Drawing.Size(186, 17);
            this.xScoreCorrection.TabIndex = 23;
            this.xScoreCorrection.Text = "zawodnicy sami poprawiają zapisy";
            this.xScoreCorrection.UseVisualStyleBackColor = true;
            // 
            // groupBox6
            // 
            this.groupBox6.Controls.Add(this.xAutoShutDownBPC);
            this.groupBox6.Controls.Add(this.xRemainingBoards);
            this.groupBox6.Controls.Add(this.xNextSeatings);
            this.groupBox6.Controls.Add(this.xScoreRecap);
            this.groupBox6.Controls.Add(this.xAutoShowScoreRecap);
            this.groupBox6.Location = new System.Drawing.Point(267, 209);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(294, 140);
            this.groupBox6.TabIndex = 43;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Koniec rundy";
            // 
            // xAutoShutDownBPC
            // 
            this.xAutoShutDownBPC.AutoSize = true;
            this.xAutoShutDownBPC.Location = new System.Drawing.Point(13, 114);
            this.xAutoShutDownBPC.Name = "xAutoShutDownBPC";
            this.xAutoShutDownBPC.Size = new System.Drawing.Size(166, 17);
            this.xAutoShutDownBPC.TabIndex = 17;
            this.xAutoShutDownBPC.Text = "automat. wyłącz BCS po sesji";
            this.xAutoShutDownBPC.UseVisualStyleBackColor = true;
            // 
            // xRemainingBoards
            // 
            this.xRemainingBoards.AutoSize = true;
            this.xRemainingBoards.Location = new System.Drawing.Point(13, 68);
            this.xRemainingBoards.Name = "xRemainingBoards";
            this.xRemainingBoards.Size = new System.Drawing.Size(205, 17);
            this.xRemainingBoards.TabIndex = 11;
            this.xRemainingBoards.Text = "pokazuj liczbę rozdań do końca rundy";
            this.xRemainingBoards.UseVisualStyleBackColor = true;
            // 
            // xNextSeatings
            // 
            this.xNextSeatings.AutoSize = true;
            this.xNextSeatings.Location = new System.Drawing.Point(13, 91);
            this.xNextSeatings.Name = "xNextSeatings";
            this.xNextSeatings.Size = new System.Drawing.Size(192, 17);
            this.xNextSeatings.TabIndex = 8;
            this.xNextSeatings.Text = "pokazuj rozstawienie kolejnej rundy";
            this.xNextSeatings.UseVisualStyleBackColor = true;
            // 
            // xScoreRecap
            // 
            this.xScoreRecap.AutoSize = true;
            this.xScoreRecap.Location = new System.Drawing.Point(13, 22);
            this.xScoreRecap.Name = "xScoreRecap";
            this.xScoreRecap.Size = new System.Drawing.Size(176, 17);
            this.xScoreRecap.TabIndex = 12;
            this.xScoreRecap.Text = "podgląd zapisów bieżącej rundy";
            this.xScoreRecap.UseVisualStyleBackColor = true;
            // 
            // xAutoShowScoreRecap
            // 
            this.xAutoShowScoreRecap.AutoSize = true;
            this.xAutoShowScoreRecap.Location = new System.Drawing.Point(13, 45);
            this.xAutoShowScoreRecap.Name = "xAutoShowScoreRecap";
            this.xAutoShowScoreRecap.Size = new System.Drawing.Size(228, 17);
            this.xAutoShowScoreRecap.TabIndex = 13;
            this.xAutoShowScoreRecap.Text = "podgląd zapisów na koniec rundy automat.";
            this.xAutoShowScoreRecap.UseVisualStyleBackColor = true;
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.xCheckLeadCard);
            this.groupBox5.Controls.Add(this.xLeadCard);
            this.groupBox5.Controls.Add(this.xViewHandrecord);
            this.groupBox5.Location = new System.Drawing.Point(1, 355);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(257, 121);
            this.groupBox5.TabIndex = 42;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Rozkłady";
            // 
            // xCheckLeadCard
            // 
            this.xCheckLeadCard.AutoSize = true;
            this.xCheckLeadCard.Location = new System.Drawing.Point(12, 71);
            this.xCheckLeadCard.Name = "xCheckLeadCard";
            this.xCheckLeadCard.Size = new System.Drawing.Size(180, 17);
            this.xCheckLeadCard.TabIndex = 32;
            this.xCheckLeadCard.Text = "sprawdź kartę wistu z rozkładem";
            this.xCheckLeadCard.UseVisualStyleBackColor = true;
            // 
            // xLeadCard
            // 
            this.xLeadCard.AutoSize = true;
            this.xLeadCard.Location = new System.Drawing.Point(12, 48);
            this.xLeadCard.Name = "xLeadCard";
            this.xLeadCard.Size = new System.Drawing.Size(111, 17);
            this.xLeadCard.TabIndex = 21;
            this.xLeadCard.Text = "pytaj o kartę wistu";
            this.xLeadCard.UseVisualStyleBackColor = true;
            // 
            // xViewHandrecord
            // 
            this.xViewHandrecord.AutoSize = true;
            this.xViewHandrecord.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.xViewHandrecord.Location = new System.Drawing.Point(12, 25);
            this.xViewHandrecord.Name = "xViewHandrecord";
            this.xViewHandrecord.Size = new System.Drawing.Size(123, 17);
            this.xViewHandrecord.TabIndex = 29;
            this.xViewHandrecord.Text = "pokazuj rozkłady";
            this.xViewHandrecord.UseVisualStyleBackColor = true;
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.xGroupSections);
            this.groupBox4.Controls.Add(this.xShowResults);
            this.groupBox4.Controls.Add(this.xRepeatResults);
            this.groupBox4.Controls.Add(this.xShowPercentage);
            this.groupBox4.Controls.Add(this.xShowContract);
            this.groupBox4.Controls.Add(this.xResultsOverview);
            this.groupBox4.Location = new System.Drawing.Point(267, 65);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(294, 138);
            this.groupBox4.TabIndex = 41;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Protokół";
            // 
            // xGroupSections
            // 
            this.xGroupSections.AutoSize = true;
            this.xGroupSections.Enabled = false;
            this.xGroupSections.Location = new System.Drawing.Point(34, 89);
            this.xGroupSections.Name = "xGroupSections";
            this.xGroupSections.Size = new System.Drawing.Size(215, 17);
            this.xGroupSections.TabIndex = 4;
            this.xGroupSections.Text = "oddzielne maksowanie każdego sektora";
            this.xGroupSections.UseVisualStyleBackColor = true;
            // 
            // xShowResults
            // 
            this.xShowResults.AutoSize = true;
            this.xShowResults.Location = new System.Drawing.Point(13, 20);
            this.xShowResults.Name = "xShowResults";
            this.xShowResults.Size = new System.Drawing.Size(159, 17);
            this.xShowResults.TabIndex = 1;
            this.xShowResults.Text = "pokazuj wynik rozdania jako";
            this.xShowResults.UseVisualStyleBackColor = true;
            this.xShowResults.CheckedChanged += new System.EventHandler(this.xShowResults_CheckedChanged);
            // 
            // xRepeatResults
            // 
            this.xRepeatResults.AutoSize = true;
            this.xRepeatResults.Enabled = false;
            this.xRepeatResults.Location = new System.Drawing.Point(34, 43);
            this.xRepeatResults.Name = "xRepeatResults";
            this.xRepeatResults.Size = new System.Drawing.Size(155, 17);
            this.xRepeatResults.TabIndex = 2;
            this.xRepeatResults.Text = "nieskończone przeglądanie";
            this.xRepeatResults.UseVisualStyleBackColor = true;
            // 
            // xShowPercentage
            // 
            this.xShowPercentage.AutoSize = true;
            this.xShowPercentage.Enabled = false;
            this.xShowPercentage.Location = new System.Drawing.Point(34, 66);
            this.xShowPercentage.Name = "xShowPercentage";
            this.xShowPercentage.Size = new System.Drawing.Size(102, 17);
            this.xShowPercentage.TabIndex = 3;
            this.xShowPercentage.Text = "pokaż % wyniku";
            this.xShowPercentage.UseVisualStyleBackColor = true;
            // 
            // xShowContract
            // 
            this.xShowContract.AutoSize = true;
            this.xShowContract.Location = new System.Drawing.Point(13, 112);
            this.xShowContract.Name = "xShowContract";
            this.xShowContract.Size = new System.Drawing.Size(150, 17);
            this.xShowContract.TabIndex = 20;
            this.xShowContract.Text = "pokazuj znaczki brydżowe";
            this.xShowContract.UseVisualStyleBackColor = true;
            // 
            // xResultsOverview
            // 
            this.xResultsOverview.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.xResultsOverview.Enabled = false;
            this.xResultsOverview.FormattingEnabled = true;
            this.xResultsOverview.Items.AddRange(new object[] {
            "frekwens, 6x1",
            "frekwens, 6x2",
            "frekwens, 4x1",
            "traveler, 6x1",
            "traveler, 6x2",
            "traveler, 4x1"});
            this.xResultsOverview.Location = new System.Drawing.Point(178, 18);
            this.xResultsOverview.Name = "xResultsOverview";
            this.xResultsOverview.Size = new System.Drawing.Size(103, 21);
            this.xResultsOverview.TabIndex = 28;
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.xCollectPlay);
            this.groupBox3.Controls.Add(this.xBoardOrderVerification);
            this.groupBox3.Controls.Add(this.xIntermediateResults);
            this.groupBox3.Controls.Add(this.xAutoBoardNumber);
            this.groupBox3.Controls.Add(this.xCollectBidding);
            this.groupBox3.Location = new System.Drawing.Point(1, 209);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(257, 140);
            this.groupBox3.TabIndex = 40;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Zapis rozdania";
            // 
            // xCollectPlay
            // 
            this.xCollectPlay.AutoSize = true;
            this.xCollectPlay.Location = new System.Drawing.Point(12, 114);
            this.xCollectPlay.Name = "xCollectPlay";
            this.xCollectPlay.Size = new System.Drawing.Size(146, 17);
            this.xCollectPlay.TabIndex = 31;
            this.xCollectPlay.Text = "zbieraj przebieg rozgrywki";
            this.xCollectPlay.UseVisualStyleBackColor = true;
            // 
            // xBoardOrderVerification
            // 
            this.xBoardOrderVerification.AutoSize = true;
            this.xBoardOrderVerification.Location = new System.Drawing.Point(12, 45);
            this.xBoardOrderVerification.Name = "xBoardOrderVerification";
            this.xBoardOrderVerification.Size = new System.Drawing.Size(156, 17);
            this.xBoardOrderVerification.TabIndex = 15;
            this.xBoardOrderVerification.Text = "sprawdzaj kolejność rozdań";
            this.xBoardOrderVerification.UseVisualStyleBackColor = true;
            // 
            // xIntermediateResults
            // 
            this.xIntermediateResults.AutoSize = true;
            this.xIntermediateResults.Location = new System.Drawing.Point(12, 68);
            this.xIntermediateResults.Name = "xIntermediateResults";
            this.xIntermediateResults.Size = new System.Drawing.Size(161, 17);
            this.xIntermediateResults.TabIndex = 16;
            this.xIntermediateResults.Text = "zbieranie danych pośrednich";
            this.xIntermediateResults.UseVisualStyleBackColor = true;
            // 
            // xAutoBoardNumber
            // 
            this.xAutoBoardNumber.AutoSize = true;
            this.xAutoBoardNumber.Location = new System.Drawing.Point(12, 22);
            this.xAutoBoardNumber.Name = "xAutoBoardNumber";
            this.xAutoBoardNumber.Size = new System.Drawing.Size(174, 17);
            this.xAutoBoardNumber.TabIndex = 10;
            this.xAutoBoardNumber.Text = "automat. wpisuj numer rozdania";
            this.xAutoBoardNumber.UseVisualStyleBackColor = true;
            // 
            // xCollectBidding
            // 
            this.xCollectBidding.AutoSize = true;
            this.xCollectBidding.Location = new System.Drawing.Point(12, 91);
            this.xCollectBidding.Name = "xCollectBidding";
            this.xCollectBidding.Size = new System.Drawing.Size(97, 17);
            this.xCollectBidding.TabIndex = 30;
            this.xCollectBidding.Text = "zbieraj licytację";
            this.xCollectBidding.UseVisualStyleBackColor = true;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.xMemberNumbers);
            this.groupBox2.Controls.Add(this.xShowPairNumbers);
            this.groupBox2.Controls.Add(this.xMemberNumbersNoBlankEntry);
            this.groupBox2.Controls.Add(this.xShowPlayerNames);
            this.groupBox2.Location = new System.Drawing.Point(1, 65);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(257, 138);
            this.groupBox2.TabIndex = 39;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Rozstawienie";
            // 
            // xMemberNumbers
            // 
            this.xMemberNumbers.AutoSize = true;
            this.xMemberNumbers.Location = new System.Drawing.Point(12, 67);
            this.xMemberNumbers.Name = "xMemberNumbers";
            this.xMemberNumbers.Size = new System.Drawing.Size(133, 17);
            this.xMemberNumbers.TabIndex = 6;
            this.xMemberNumbers.Text = "pytaj o ID zawodników";
            this.xMemberNumbers.UseVisualStyleBackColor = true;
            this.xMemberNumbers.CheckedChanged += new System.EventHandler(this.xMemberNumbers_CheckedChanged);
            // 
            // xShowPairNumbers
            // 
            this.xShowPairNumbers.AutoSize = true;
            this.xShowPairNumbers.Location = new System.Drawing.Point(12, 44);
            this.xShowPairNumbers.Name = "xShowPairNumbers";
            this.xShowPairNumbers.Size = new System.Drawing.Size(118, 17);
            this.xShowPairNumbers.TabIndex = 5;
            this.xShowPairNumbers.Text = "pokazuj numery par";
            this.xShowPairNumbers.UseVisualStyleBackColor = true;
            // 
            // xMemberNumbersNoBlankEntry
            // 
            this.xMemberNumbersNoBlankEntry.AutoSize = true;
            this.xMemberNumbersNoBlankEntry.Enabled = false;
            this.xMemberNumbersNoBlankEntry.Location = new System.Drawing.Point(33, 90);
            this.xMemberNumbersNoBlankEntry.Name = "xMemberNumbersNoBlankEntry";
            this.xMemberNumbersNoBlankEntry.Size = new System.Drawing.Size(131, 17);
            this.xMemberNumbersNoBlankEntry.TabIndex = 7;
            this.xMemberNumbersNoBlankEntry.Text = "ID nie może być puste";
            this.xMemberNumbersNoBlankEntry.UseVisualStyleBackColor = true;
            // 
            // xShowPlayerNames
            // 
            this.xShowPlayerNames.AutoSize = true;
            this.xShowPlayerNames.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.xShowPlayerNames.Location = new System.Drawing.Point(12, 21);
            this.xShowPlayerNames.Name = "xShowPlayerNames";
            this.xShowPlayerNames.Size = new System.Drawing.Size(126, 17);
            this.xShowPlayerNames.TabIndex = 9;
            this.xShowPlayerNames.Text = "pokazuj nazwiska";
            this.xShowPlayerNames.UseVisualStyleBackColor = true;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.label1.ForeColor = System.Drawing.SystemColors.WindowText;
            this.label1.Location = new System.Drawing.Point(89, 37);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(398, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Te same ustawienia są ustawiane dla wszystkich sektorów, przynajmniej na razie :-" +
                ")";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.bRRBTournament);
            this.tabPage2.Controls.Add(this.label9);
            this.tabPage2.Controls.Add(this.eOomRounds);
            this.tabPage2.Controls.Add(this.bForceSync);
            this.tabPage2.Controls.Add(this.lNazwyTeamow);
            this.tabPage2.Controls.Add(this.lSkok);
            this.tabPage2.Controls.Add(this.eInterval);
            this.tabPage2.Controls.Add(this.label10);
            this.tabPage2.Controls.Add(this.label7);
            this.tabPage2.Controls.Add(this.bTruncate);
            this.tabPage2.Controls.Add(this.bMysqlSettings);
            this.tabPage2.Controls.Add(this.label8);
            this.tabPage2.Controls.Add(this.bAutoSync);
            this.tabPage2.Controls.Add(this.bSync);
            this.tabPage2.Controls.Add(this.lTables);
            this.tabPage2.Controls.Add(this.lSections);
            this.tabPage2.Controls.Add(this.lType);
            this.tabPage2.Controls.Add(this.label6);
            this.tabPage2.Controls.Add(this.label5);
            this.tabPage2.Controls.Add(this.label4);
            this.tabPage2.Controls.Add(this.lTournament);
            this.tabPage2.Controls.Add(this.bMySQLTournament);
            this.tabPage2.Controls.Add(this.label3);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(569, 511);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Nazwiska";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // bRRBTournament
            // 
            this.bRRBTournament.Location = new System.Drawing.Point(54, 51);
            this.bRRBTournament.Name = "bRRBTournament";
            this.bRRBTournament.Size = new System.Drawing.Size(89, 23);
            this.bRRBTournament.TabIndex = 25;
            this.bRRBTournament.Text = "wybierz (RRB)";
            this.bRRBTournament.UseVisualStyleBackColor = true;
            this.bRRBTournament.Click += new System.EventHandler(this.bRRBTournament_Click);
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.label9.Location = new System.Drawing.Point(10, 278);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(230, 9);
            this.label9.TabIndex = 24;
            this.label9.Text = "Rundy dla OOM (jeśli nie wiesz do czego to jest, to nic nie wpisuj!)";
            // 
            // eOomRounds
            // 
            this.eOomRounds.Location = new System.Drawing.Point(12, 290);
            this.eOomRounds.Name = "eOomRounds";
            this.eOomRounds.Size = new System.Drawing.Size(100, 20);
            this.eOomRounds.TabIndex = 23;
            // 
            // bForceSync
            // 
            this.bForceSync.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.bForceSync.Location = new System.Drawing.Point(336, 97);
            this.bForceSync.Name = "bForceSync";
            this.bForceSync.Size = new System.Drawing.Size(152, 40);
            this.bForceSync.TabIndex = 22;
            this.bForceSync.Text = "Wymuś przesłanie wszystkich do serwerka ponownie";
            this.bForceSync.UseVisualStyleBackColor = true;
            this.bForceSync.Click += new System.EventHandler(this.bForceSync_Click);
            // 
            // lNazwyTeamow
            // 
            this.lNazwyTeamow.AutoSize = true;
            this.lNazwyTeamow.Location = new System.Drawing.Point(301, 51);
            this.lNazwyTeamow.Name = "lNazwyTeamow";
            this.lNazwyTeamow.Size = new System.Drawing.Size(227, 13);
            this.lNazwyTeamow.TabIndex = 20;
            this.lNazwyTeamow.Text = "w piernikach będą wyświetlane nazwy teamów";
            this.lNazwyTeamow.Visible = false;
            // 
            // lSkok
            // 
            this.lSkok.AutoSize = true;
            this.lSkok.Location = new System.Drawing.Point(77, 164);
            this.lSkok.Name = "lSkok";
            this.lSkok.Size = new System.Drawing.Size(188, 13);
            this.lSkok.TabIndex = 19;
            this.lSkok.Text = "mam nadzieję, że skok stołów = 100 :)";
            this.lSkok.Visible = false;
            // 
            // eInterval
            // 
            this.eInterval.Enabled = false;
            this.eInterval.Location = new System.Drawing.Point(389, 177);
            this.eInterval.MaxLength = 4;
            this.eInterval.Name = "eInterval";
            this.eInterval.Size = new System.Drawing.Size(45, 20);
            this.eInterval.TabIndex = 18;
            this.eInterval.Text = "60";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(440, 180);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(27, 13);
            this.label10.TabIndex = 17;
            this.label10.Text = "sek.";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(364, 180);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(19, 13);
            this.label7.TabIndex = 16;
            this.label7.Text = "co";
            // 
            // bTruncate
            // 
            this.bTruncate.Location = new System.Drawing.Point(434, 223);
            this.bTruncate.Name = "bTruncate";
            this.bTruncate.Size = new System.Drawing.Size(123, 23);
            this.bTruncate.TabIndex = 15;
            this.bTruncate.Text = "Usuń nazwiska z bws";
            this.bTruncate.UseVisualStyleBackColor = true;
            this.bTruncate.Visible = false;
            this.bTruncate.Click += new System.EventHandler(this.bTruncate_Click);
            // 
            // bMysqlSettings
            // 
            this.bMysqlSettings.Location = new System.Drawing.Point(434, 336);
            this.bMysqlSettings.Name = "bMysqlSettings";
            this.bMysqlSettings.Size = new System.Drawing.Size(123, 23);
            this.bMysqlSettings.TabIndex = 14;
            this.bMysqlSettings.Text = "Ustawienia MySQL";
            this.bMysqlSettings.UseVisualStyleBackColor = true;
            this.bMysqlSettings.Click += new System.EventHandler(this.bMysqlSettings_Click);
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(268, 3);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(292, 13);
            this.label8.TabIndex = 12;
            this.label8.Text = "(do serwerka wysyłane są tylko nazwiska, które się zmieniły)";
            // 
            // bAutoSync
            // 
            this.bAutoSync.Enabled = false;
            this.bAutoSync.Location = new System.Drawing.Point(336, 150);
            this.bAutoSync.Name = "bAutoSync";
            this.bAutoSync.Size = new System.Drawing.Size(152, 27);
            this.bAutoSync.TabIndex = 11;
            this.bAutoSync.Text = "Synchronizuj cyklicznie";
            this.bAutoSync.UseVisualStyleBackColor = true;
            this.bAutoSync.Click += new System.EventHandler(this.bAutoSync_Click);
            // 
            // bSync
            // 
            this.bSync.Enabled = false;
            this.bSync.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.bSync.Location = new System.Drawing.Point(336, 67);
            this.bSync.Name = "bSync";
            this.bSync.Size = new System.Drawing.Size(152, 33);
            this.bSync.TabIndex = 9;
            this.bSync.Text = "Synchronizuj teraz";
            this.bSync.UseVisualStyleBackColor = true;
            this.bSync.Click += new System.EventHandler(this.bSync_Click);
            // 
            // lTables
            // 
            this.lTables.AutoSize = true;
            this.lTables.Location = new System.Drawing.Point(77, 138);
            this.lTables.Name = "lTables";
            this.lTables.Size = new System.Drawing.Size(0, 13);
            this.lTables.TabIndex = 8;
            // 
            // lSections
            // 
            this.lSections.AutoSize = true;
            this.lSections.Location = new System.Drawing.Point(77, 113);
            this.lSections.Name = "lSections";
            this.lSections.Size = new System.Drawing.Size(0, 13);
            this.lSections.TabIndex = 7;
            // 
            // lType
            // 
            this.lType.AutoSize = true;
            this.lType.Location = new System.Drawing.Point(77, 88);
            this.lType.Name = "lType";
            this.lType.Size = new System.Drawing.Size(0, 13);
            this.lType.TabIndex = 6;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(9, 138);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(44, 13);
            this.label6.TabIndex = 5;
            this.label6.Text = "Stołów:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(9, 113);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(55, 13);
            this.label5.TabIndex = 4;
            this.label5.Text = "Sektorów:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(9, 88);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(28, 13);
            this.label4.TabIndex = 3;
            this.label4.Text = "Typ:";
            // 
            // lTournament
            // 
            this.lTournament.AutoSize = true;
            this.lTournament.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.lTournament.Location = new System.Drawing.Point(149, 48);
            this.lTournament.Name = "lTournament";
            this.lTournament.Size = new System.Drawing.Size(0, 16);
            this.lTournament.TabIndex = 2;
            // 
            // bMySQLTournament
            // 
            this.bMySQLTournament.Location = new System.Drawing.Point(54, 27);
            this.bMySQLTournament.Name = "bMySQLTournament";
            this.bMySQLTournament.Size = new System.Drawing.Size(89, 23);
            this.bMySQLTournament.TabIndex = 1;
            this.bMySQLTournament.Text = "wybierz (JFR)";
            this.bMySQLTournament.UseVisualStyleBackColor = true;
            this.bMySQLTournament.Click += new System.EventHandler(this.bMySQLTournament_Click);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 32);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(42, 13);
            this.label3.TabIndex = 0;
            this.label3.Text = "Turniej:";
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.bClearHands);
            this.tabPage3.Controls.Add(this.lRecordSections);
            this.tabPage3.Controls.Add(this.cblSections);
            this.tabPage3.Controls.Add(this.label14);
            this.tabPage3.Controls.Add(this.label13);
            this.tabPage3.Controls.Add(this.lWczytywane);
            this.tabPage3.Controls.Add(this.label12);
            this.tabPage3.Controls.Add(this.label11);
            this.tabPage3.Controls.Add(this.bLoadHands);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage3.Size = new System.Drawing.Size(569, 511);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Rozkłady";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // bClearHands
            // 
            this.bClearHands.Location = new System.Drawing.Point(334, 336);
            this.bClearHands.Name = "bClearHands";
            this.bClearHands.Size = new System.Drawing.Size(223, 23);
            this.bClearHands.TabIndex = 8;
            this.bClearHands.Text = "Usuń rozkłady dla wszystkich sektorów";
            this.bClearHands.UseVisualStyleBackColor = true;
            this.bClearHands.Click += new System.EventHandler(this.bClearHands_Click);
            // 
            // lRecordSections
            // 
            this.lRecordSections.AutoSize = true;
            this.lRecordSections.Location = new System.Drawing.Point(23, 150);
            this.lRecordSections.Name = "lRecordSections";
            this.lRecordSections.Size = new System.Drawing.Size(46, 13);
            this.lRecordSections.TabIndex = 7;
            this.lRecordSections.Text = "Sektory:";
            // 
            // cblSections
            // 
            this.cblSections.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.cblSections.CheckOnClick = true;
            this.cblSections.FormattingEnabled = true;
            this.cblSections.Location = new System.Drawing.Point(26, 178);
            this.cblSections.MultiColumn = true;
            this.cblSections.Name = "cblSections";
            this.cblSections.Size = new System.Drawing.Size(456, 105);
            this.cblSections.TabIndex = 6;
            this.cblSections.SelectedIndexChanged += new System.EventHandler(this.cblSections_SelectedIndexChanged);
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(6, 315);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(247, 13);
            this.label14.TabIndex = 5;
            this.label14.Text = "to także należy ręcznie zrobić Upload (patrz wyżej).";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(6, 293);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(476, 13);
            this.label13.TabIndex = 4;
            this.label13.Text = "Jeżeli Server->Show hand records w BCS nie pokazuje rozkładów (i/lub nie pokazują" +
                " ich pierniczki)";
            // 
            // lWczytywane
            // 
            this.lWczytywane.AutoSize = true;
            this.lWczytywane.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.lWczytywane.Location = new System.Drawing.Point(218, 84);
            this.lWczytywane.Name = "lWczytywane";
            this.lWczytywane.Size = new System.Drawing.Size(139, 13);
            this.lWczytywane.TabIndex = 3;
            this.lWczytywane.Text = "Wczytywane rozkłady: ";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(6, 36);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(408, 13);
            this.label12.TabIndex = 2;
            this.label12.Text = "W przeciwnym razie trzeba w BCS wybrać: Session->Upload hand records->Upload...";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(6, 14);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(280, 13);
            this.label11.TabIndex = 1;
            this.label11.Text = "Rozkłady muszą zostać wczytane przed \"Uruchom BCS\".";
            // 
            // bLoadHands
            // 
            this.bLoadHands.Location = new System.Drawing.Point(26, 84);
            this.bLoadHands.Name = "bLoadHands";
            this.bLoadHands.Size = new System.Drawing.Size(149, 42);
            this.bLoadHands.TabIndex = 0;
            this.bLoadHands.Text = "Wczytaj rozkłady";
            this.bLoadHands.UseVisualStyleBackColor = true;
            this.bLoadHands.Click += new System.EventHandler(this.bLoadHands_Click);
            // 
            // timer
            // 
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // openPBN
            // 
            this.openPBN.Filter = "PBN|*.pbn";
            // 
            // toolStrip1
            // 
            this.toolStrip1.GripMargin = new System.Windows.Forms.Padding(0);
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.labelFilename,
            this.bLaunch,
            this.bUpdateSession});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(583, 25);
            this.toolStrip1.TabIndex = 3;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // labelFilename
            // 
            this.labelFilename.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.labelFilename.Name = "labelFilename";
            this.labelFilename.Size = new System.Drawing.Size(0, 22);
            // 
            // bLaunch
            // 
            this.bLaunch.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.bLaunch.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.bLaunch.Image = ((System.Drawing.Image)(resources.GetObject("bLaunch.Image")));
            this.bLaunch.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.bLaunch.Name = "bLaunch";
            this.bLaunch.Size = new System.Drawing.Size(54, 22);
            this.bLaunch.Text = "BCS";
            this.bLaunch.ToolTipText = "Uruchom BCS";
            this.bLaunch.Click += new System.EventHandler(this.bLaunch_Click);
            // 
            // bUpdateSession
            // 
            this.bUpdateSession.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.bUpdateSession.Image = ((System.Drawing.Image)(resources.GetObject("bUpdateSession.Image")));
            this.bUpdateSession.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.bUpdateSession.Name = "bUpdateSession";
            this.bUpdateSession.Size = new System.Drawing.Size(65, 22);
            this.bUpdateSession.Text = "Update";
            this.bUpdateSession.ToolTipText = "Update ustawień w trakcie sesji";
            this.bUpdateSession.Click += new System.EventHandler(this.updateSession_Click);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(583, 590);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.statusStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "MainForm";
            this.Text = "Aktywator";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
            this.Load += new System.EventHandler(this.MainForm_Load);
            this.Shown += new System.EventHandler(this.MainForm_Shown);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.statusStrip2.ResumeLayout(false);
            this.statusStrip2.PerformLayout();
            this.toolStrip2.ResumeLayout(false);
            this.toolStrip2.PerformLayout();
            this.groupBox7.ResumeLayout(false);
            this.groupBox7.PerformLayout();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            this.groupBox5.ResumeLayout(false);
            this.groupBox5.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            this.tabPage3.ResumeLayout(false);
            this.tabPage3.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.OpenFileDialog open;
        private System.Windows.Forms.StatusStrip statusStrip1;
        private System.Windows.Forms.ToolStripStatusLabel status1;
        private System.Windows.Forms.ToolStripStatusLabel status2;
        private System.Windows.Forms.ToolStripStatusLabel status3;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        public System.Windows.Forms.TextBox xPINcode;
        private System.Windows.Forms.Label label2;
        public System.Windows.Forms.CheckBox xAutoShutDownBPC;
        public System.Windows.Forms.CheckBox xIntermediateResults;
        public System.Windows.Forms.CheckBox xBoardOrderVerification;
        public System.Windows.Forms.CheckBox xMemberNumbersNoBlankEntry;
        public System.Windows.Forms.CheckBox xMemberNumbers;
        public System.Windows.Forms.CheckBox xLeadCard;
        public System.Windows.Forms.CheckBox xShowContract;
        public System.Windows.Forms.CheckBox xShowPairNumbers;
        public System.Windows.Forms.CheckBox xGroupSections;
        public System.Windows.Forms.CheckBox xShowPercentage;
        public System.Windows.Forms.CheckBox xRepeatResults;
        public System.Windows.Forms.CheckBox xShowResults;
        public System.Windows.Forms.TabPage tabPage2;
        public System.Windows.Forms.CheckBox xConfirmNP;
        public System.Windows.Forms.Label label1;
        public System.Windows.Forms.CheckBox xShowPlayerNames;
        public System.Windows.Forms.CheckBox xAutoBoardNumber;
        public System.Windows.Forms.CheckBox xScoreCorrection;
        public System.Windows.Forms.CheckBox xAutoShowScoreRecap;
        public System.Windows.Forms.CheckBox xScoreRecap;
        public System.Windows.Forms.CheckBox xNextSeatings;
        public System.Windows.Forms.CheckBox xRemainingBoards;
        public System.Windows.Forms.CheckBox xResetFunctionKey;
        private System.Windows.Forms.Label lTournament;
        private System.Windows.Forms.Button bMySQLTournament;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label lTables;
        private System.Windows.Forms.Label lSections;
        private System.Windows.Forms.Label lType;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Button bSync;
        private System.Windows.Forms.Button bAutoSync;
        private System.Windows.Forms.Label label8;
        private System.Windows.Forms.Button bMysqlSettings;
        private System.Windows.Forms.Button bTruncate;
        private System.Windows.Forms.TextBox eInterval;
        private System.Windows.Forms.Label label10;
        private System.Windows.Forms.Label label7;
        private System.Windows.Forms.Timer timer;
        private System.Windows.Forms.Label lSkok;
        private System.Windows.Forms.Label lNazwyTeamow;
        private System.Windows.Forms.Button bForceSync;
        public System.Windows.Forms.ComboBox xResultsOverview;
        public System.Windows.Forms.CheckBox xViewHandrecord;
        private System.Windows.Forms.TabPage tabPage3;
        private System.Windows.Forms.Button bLoadHands;
        private System.Windows.Forms.Label label12;
        private System.Windows.Forms.Label label11;
        public System.Windows.Forms.Label lWczytywane;
        private System.Windows.Forms.OpenFileDialog openPBN;
        private System.Windows.Forms.Label label14;
        private System.Windows.Forms.Label label13;
        private System.Windows.Forms.Label label9;
        private System.Windows.Forms.TextBox eOomRounds;
        public System.Windows.Forms.CheckBox xCollectPlay;
        public System.Windows.Forms.CheckBox xCollectBidding;
        public System.Windows.Forms.CheckBox xCheckLeadCard;
        public System.Windows.Forms.CheckedListBox cblSections;
        private System.Windows.Forms.Label lRecordSections;
        private System.Windows.Forms.Button bClearHands;
        private System.Windows.Forms.Button bRRBTournament;
        private System.Windows.Forms.GroupBox groupBox6;
        private System.Windows.Forms.GroupBox groupBox7;
        private System.Windows.Forms.GroupBox groupBox5;
        private System.Windows.Forms.GroupBox groupBox4;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.ToolStrip toolStrip1;
        private System.Windows.Forms.ToolStripLabel labelFilename;
        private System.Windows.Forms.ToolStripButton bLaunch;
        private System.Windows.Forms.ToolStripButton bUpdateSession;
        private System.Windows.Forms.StatusStrip statusStrip2;
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
        private System.Windows.Forms.ToolStrip toolStrip2;
        private System.Windows.Forms.ToolStripStatusLabel lRequiredVersion;
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel2;
        private System.Windows.Forms.ToolStripStatusLabel lDetectedVersion;
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel3;
        private System.Windows.Forms.ToolStripStatusLabel lRequiredFirmware;
        private System.Windows.Forms.ToolStripButton bLoad;
        private System.Windows.Forms.ToolStripButton bSave;
    }
}