-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.Designer.vb
4798 lines (4796 loc) · 274 KB
/
main.Designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> Partial Class Main_Renamed
#Region "Windows Form Designer generated code "
<System.Diagnostics.DebuggerNonUserCode()> Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
End Sub
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> Protected Overloads Overrides Sub Dispose(ByVal Disposing As Boolean)
If Disposing Then
If Not components Is Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(Disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
#Disable Warning BC40000 ' Type or member is obsolete
Public WithEvents cmbCheatLevel As System.Windows.Forms.ComboBox
Public WithEvents cmdScore As System.Windows.Forms.Button
Public WithEvents cmbCards As System.Windows.Forms.ComboBox
Public WithEvents _cmdOddball_9 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_8 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_7 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_6 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_5 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_4 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_3 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_2 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_1 As System.Windows.Forms.Button
Public WithEvents _cmdOddball_0 As System.Windows.Forms.Button
Public WithEvents cmdDraw As System.Windows.Forms.Button
Public WithEvents cmdOther As System.Windows.Forms.Button
Public WithEvents cmdYes As System.Windows.Forms.Button
Public WithEvents cmdNext As System.Windows.Forms.Button
Public WithEvents cmdCancel As System.Windows.Forms.Button
Public WithEvents cmd4Players As System.Windows.Forms.Button
Public WithEvents cmd3Players As System.Windows.Forms.Button
Public WithEvents cmd2Players As System.Windows.Forms.Button
Public WithEvents _cmdStack_4 As System.Windows.Forms.Button
Public WithEvents _cmdDogma_4 As System.Windows.Forms.Button
Public WithEvents _cmdStack_3 As System.Windows.Forms.Button
Public WithEvents _cmdDogma_3 As System.Windows.Forms.Button
Public WithEvents _cmdStack_2 As System.Windows.Forms.Button
Public WithEvents _cmdDogma_2 As System.Windows.Forms.Button
Public WithEvents _cmdStack_1 As System.Windows.Forms.Button
Public WithEvents _cmdDogma_1 As System.Windows.Forms.Button
Public WithEvents _cmdStack_0 As System.Windows.Forms.Button
Public WithEvents _cmdDogma_0 As System.Windows.Forms.Button
Public WithEvents txtLog As System.Windows.Forms.TextBox
Public WithEvents lblCheatLevel As System.Windows.Forms.Label
Public WithEvents _lblViewCard_4 As System.Windows.Forms.Label
Public WithEvents Line10 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents Line9 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents Label2 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_0 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_1 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_2 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_3 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_4 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_5 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_6 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_7 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_8 As System.Windows.Forms.Label
Public WithEvents _lblAgeCards_9 As System.Windows.Forms.Label
Public WithEvents _lblPlayer_0 As System.Windows.Forms.Label
Public WithEvents Image1 As System.Windows.Forms.PictureBox
Public WithEvents Image2 As System.Windows.Forms.PictureBox
Public WithEvents Image3 As System.Windows.Forms.PictureBox
Public WithEvents Image4 As System.Windows.Forms.PictureBox
Public WithEvents Image5 As System.Windows.Forms.PictureBox
Public WithEvents Image6 As System.Windows.Forms.PictureBox
Public WithEvents Label1 As System.Windows.Forms.Label
Public WithEvents _lblPlayer_1 As System.Windows.Forms.Label
Public WithEvents _lblPlayer_2 As System.Windows.Forms.Label
Public WithEvents _lblPlayer_3 As System.Windows.Forms.Label
Public WithEvents _lblIcon_0 As System.Windows.Forms.Label
Public WithEvents _lblIcon_4 As System.Windows.Forms.Label
Public WithEvents _lblIcon_8 As System.Windows.Forms.Label
Public WithEvents _lblIcon_12 As System.Windows.Forms.Label
Public WithEvents _lblIcon_16 As System.Windows.Forms.Label
Public WithEvents _lblIcon_20 As System.Windows.Forms.Label
Public WithEvents _lblVP_0 As System.Windows.Forms.Label
Public WithEvents _lblIcon_1 As System.Windows.Forms.Label
Public WithEvents _lblIcon_5 As System.Windows.Forms.Label
Public WithEvents _lblIcon_9 As System.Windows.Forms.Label
Public WithEvents _lblIcon_13 As System.Windows.Forms.Label
Public WithEvents _lblIcon_17 As System.Windows.Forms.Label
Public WithEvents _lblIcon_21 As System.Windows.Forms.Label
Public WithEvents _lblVP_1 As System.Windows.Forms.Label
Public WithEvents _lblIcon_2 As System.Windows.Forms.Label
Public WithEvents _lblIcon_6 As System.Windows.Forms.Label
Public WithEvents _lblIcon_10 As System.Windows.Forms.Label
Public WithEvents _lblIcon_14 As System.Windows.Forms.Label
Public WithEvents _lblIcon_18 As System.Windows.Forms.Label
Public WithEvents _lblIcon_22 As System.Windows.Forms.Label
Public WithEvents _lblVP_2 As System.Windows.Forms.Label
Public WithEvents _lblIcon_3 As System.Windows.Forms.Label
Public WithEvents _lblIcon_7 As System.Windows.Forms.Label
Public WithEvents _lblIcon_11 As System.Windows.Forms.Label
Public WithEvents _lblIcon_15 As System.Windows.Forms.Label
Public WithEvents _lblIcon_19 As System.Windows.Forms.Label
Public WithEvents _lblIcon_23 As System.Windows.Forms.Label
Public WithEvents _lblVP_3 As System.Windows.Forms.Label
Public WithEvents _lblScore_0 As System.Windows.Forms.Label
Public WithEvents _lblScore_1 As System.Windows.Forms.Label
Public WithEvents _lblScore_2 As System.Windows.Forms.Label
Public WithEvents _lblScore_3 As System.Windows.Forms.Label
Public WithEvents Label8 As System.Windows.Forms.Label
Public WithEvents Line1 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents lblOtherApps As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_14 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_13 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_12 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_11 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_10 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_9 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_8 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_7 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_6 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_5 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_4 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_3 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_2 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_1 As System.Windows.Forms.Label
Public WithEvents _lblOppDetail_0 As System.Windows.Forms.Label
Public WithEvents _lblScoreTitle_1 As System.Windows.Forms.Label
Public WithEvents _imgScoreIcon_1 As System.Windows.Forms.PictureBox
Public WithEvents _lblScoreTitle_0 As System.Windows.Forms.Label
Public WithEvents _imgScoreIcon_0 As System.Windows.Forms.PictureBox
Public WithEvents Line8 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents lblScorePile As System.Windows.Forms.Label
Public WithEvents _imgHandIcon_1 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppScore_2 As System.Windows.Forms.Label
Public WithEvents _lblOppHand_2 As System.Windows.Forms.Label
Public WithEvents _lblOppBoard_14 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_14 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_13 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_13 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_12 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_12 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_11 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_11 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_10 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_10 As System.Windows.Forms.PictureBox
Public WithEvents _lblPlayerDetail_2 As System.Windows.Forms.Label
Public WithEvents _lblOppScore_1 As System.Windows.Forms.Label
Public WithEvents _lblOppHand_1 As System.Windows.Forms.Label
Public WithEvents _lblOppBoard_9 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_9 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_8 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_8 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_7 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_7 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_6 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_6 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_5 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_5 As System.Windows.Forms.PictureBox
Public WithEvents _lblPlayerDetail_1 As System.Windows.Forms.Label
Public WithEvents Line7 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents _lblOppScore_0 As System.Windows.Forms.Label
Public WithEvents _lblOppHand_0 As System.Windows.Forms.Label
Public WithEvents _lblOppBoard_4 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_4 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_3 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_3 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_2 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_2 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_1 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_1 As System.Windows.Forms.PictureBox
Public WithEvents _lblOppBoard_0 As System.Windows.Forms.Label
Public WithEvents _imgOppBoard_0 As System.Windows.Forms.PictureBox
Public WithEvents _lblPlayerDetail_0 As System.Windows.Forms.Label
Public WithEvents _imgHandIcon_0 As System.Windows.Forms.PictureBox
Public WithEvents _lblBoardDetails_4 As System.Windows.Forms.Label
Public WithEvents _lblBoardDetails_3 As System.Windows.Forms.Label
Public WithEvents _lblBoardDetails_2 As System.Windows.Forms.Label
Public WithEvents _lblBoardDetails_1 As System.Windows.Forms.Label
Public WithEvents _lblBoardDetails_0 As System.Windows.Forms.Label
Public WithEvents Label6 As System.Windows.Forms.Label
Public WithEvents Line6 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents _imgIconSmall_12 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_13 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_14 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_15 As System.Windows.Forms.PictureBox
Public WithEvents _lblBoardTitle_3 As System.Windows.Forms.Label
Public WithEvents _lblBoardAge_3 As System.Windows.Forms.Label
Public WithEvents _lblDogma_3 As System.Windows.Forms.Label
Public WithEvents _imgBoardDogma_3 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_8 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_9 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_10 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_11 As System.Windows.Forms.PictureBox
Public WithEvents _lblBoardTitle_2 As System.Windows.Forms.Label
Public WithEvents _lblBoardAge_2 As System.Windows.Forms.Label
Public WithEvents _lblDogma_2 As System.Windows.Forms.Label
Public WithEvents _imgBoardDogma_2 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_4 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_5 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_6 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_7 As System.Windows.Forms.PictureBox
Public WithEvents _lblBoardTitle_1 As System.Windows.Forms.Label
Public WithEvents _lblBoardAge_1 As System.Windows.Forms.Label
Public WithEvents _lblDogma_1 As System.Windows.Forms.Label
Public WithEvents _imgBoardDogma_1 As System.Windows.Forms.PictureBox
Public WithEvents _imgBoardDogma_0 As System.Windows.Forms.PictureBox
Public WithEvents _lblDogma_0 As System.Windows.Forms.Label
Public WithEvents _lblBoardAge_0 As System.Windows.Forms.Label
Public WithEvents _lblBoardTitle_0 As System.Windows.Forms.Label
Public WithEvents _imgIconSmall_3 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_2 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_1 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_0 As System.Windows.Forms.PictureBox
Public WithEvents _imgBoard_0 As System.Windows.Forms.PictureBox
Public WithEvents lblActionsRemaining As System.Windows.Forms.Label
Public WithEvents lblPrompt As System.Windows.Forms.Label
Public WithEvents lblRules As System.Windows.Forms.Label
Public WithEvents imgDogmaSymbol As System.Windows.Forms.PictureBox
Public WithEvents lblDogmaSymbol As System.Windows.Forms.Label
Public WithEvents lblLarge As System.Windows.Forms.Label
Public WithEvents _imgLargeIcon_3 As System.Windows.Forms.PictureBox
Public WithEvents _imgLargeIcon_2 As System.Windows.Forms.PictureBox
Public WithEvents _imgLargeIcon_1 As System.Windows.Forms.PictureBox
Public WithEvents _imgLargeIcon_0 As System.Windows.Forms.PictureBox
Public WithEvents Line5 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents Line4 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents Line3 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents Line2 As Microsoft.VisualBasic.PowerPacks.LineShape
Public WithEvents _lblAchievement_13 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_12 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_11 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_10 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_9 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_8 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_7 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_6 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_5 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_4 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_3 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_2 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_1 As System.Windows.Forms.Label
Public WithEvents _lblAchievement_0 As System.Windows.Forms.Label
Public WithEvents lblGoals As System.Windows.Forms.Label
Public WithEvents _imgBoard_3 As System.Windows.Forms.PictureBox
Public WithEvents _imgBoard_2 As System.Windows.Forms.PictureBox
Public WithEvents _imgBoard_1 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_16 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_17 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_18 As System.Windows.Forms.PictureBox
Public WithEvents _imgIconSmall_19 As System.Windows.Forms.PictureBox
Public WithEvents _lblBoardTitle_4 As System.Windows.Forms.Label
Public WithEvents _lblBoardAge_4 As System.Windows.Forms.Label
Public WithEvents _lblDogma_4 As System.Windows.Forms.Label
Public WithEvents _imgBoardDogma_4 As System.Windows.Forms.PictureBox
Public WithEvents _imgBoard_4 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_0 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_1 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_2 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_3 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_4 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_5 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_6 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_7 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_8 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_9 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_10 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_11 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_12 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_13 As System.Windows.Forms.PictureBox
Public WithEvents _imgOppBoardColor_14 As System.Windows.Forms.PictureBox
Public WithEvents _lblHand_0 As System.Windows.Forms.Label
Public WithEvents _imgHandColor_0 As System.Windows.Forms.PictureBox
Public WithEvents _imgScoreColor_0 As System.Windows.Forms.PictureBox
Public WithEvents _imgScoreColor_1 As System.Windows.Forms.PictureBox
Public WithEvents _lblHand_1 As System.Windows.Forms.Label
Public WithEvents _imgHandColor_1 As System.Windows.Forms.PictureBox
Public WithEvents Label9 As System.Windows.Forms.Label
Public WithEvents lblHighestTop As System.Windows.Forms.Label
Public WithEvents Label4 As System.Windows.Forms.Label
Public WithEvents cmdDogma As Microsoft.VisualBasic.Compatibility.VB6.ButtonArray
Public WithEvents cmdOddball As Microsoft.VisualBasic.Compatibility.VB6.ButtonArray
Public WithEvents cmdStack As Microsoft.VisualBasic.Compatibility.VB6.ButtonArray
Public WithEvents imgBoard As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgBoardDogma As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgHandColor As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgHandIcon As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgIconSmall As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgLargeIcon As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgOppBoard As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgOppBoardColor As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgScoreColor As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents imgScoreIcon As Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray
Public WithEvents lblAchievement As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblAgeCards As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblBoardAge As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblBoardDetails As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblBoardTitle As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblDogma As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblHand As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblIcon As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblOppBoard As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblOppDetail As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblOppHand As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblOppScore As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblPlayer As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblPlayerDetail As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblScore As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblScoreTitle As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblVP As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents lblViewCard As Microsoft.VisualBasic.Compatibility.VB6.LabelArray
Public WithEvents ShapeContainer1 As Microsoft.VisualBasic.PowerPacks.ShapeContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Main_Renamed))
Me.ShapeContainer1 = New Microsoft.VisualBasic.PowerPacks.ShapeContainer()
Me.LineShape1 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line10 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line9 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line1 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line8 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line7 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line6 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line5 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line4 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line3 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.Line2 = New Microsoft.VisualBasic.PowerPacks.LineShape()
Me.cmbCheatLevel = New System.Windows.Forms.ComboBox()
Me.cmdScore = New System.Windows.Forms.Button()
Me.cmbCards = New System.Windows.Forms.ComboBox()
Me._cmdOddball_9 = New System.Windows.Forms.Button()
Me._cmdOddball_8 = New System.Windows.Forms.Button()
Me._cmdOddball_7 = New System.Windows.Forms.Button()
Me._cmdOddball_6 = New System.Windows.Forms.Button()
Me._cmdOddball_5 = New System.Windows.Forms.Button()
Me._cmdOddball_4 = New System.Windows.Forms.Button()
Me._cmdOddball_3 = New System.Windows.Forms.Button()
Me._cmdOddball_2 = New System.Windows.Forms.Button()
Me._cmdOddball_1 = New System.Windows.Forms.Button()
Me._cmdOddball_0 = New System.Windows.Forms.Button()
Me.cmdDraw = New System.Windows.Forms.Button()
Me.cmdOther = New System.Windows.Forms.Button()
Me.cmdYes = New System.Windows.Forms.Button()
Me.cmdNext = New System.Windows.Forms.Button()
Me.cmdCancel = New System.Windows.Forms.Button()
Me.cmd4Players = New System.Windows.Forms.Button()
Me.cmd3Players = New System.Windows.Forms.Button()
Me.cmd2Players = New System.Windows.Forms.Button()
Me._cmdStack_4 = New System.Windows.Forms.Button()
Me._cmdDogma_4 = New System.Windows.Forms.Button()
Me._cmdStack_3 = New System.Windows.Forms.Button()
Me._cmdDogma_3 = New System.Windows.Forms.Button()
Me._cmdStack_2 = New System.Windows.Forms.Button()
Me._cmdDogma_2 = New System.Windows.Forms.Button()
Me._cmdStack_1 = New System.Windows.Forms.Button()
Me._cmdDogma_1 = New System.Windows.Forms.Button()
Me._cmdStack_0 = New System.Windows.Forms.Button()
Me._cmdDogma_0 = New System.Windows.Forms.Button()
Me.txtLog = New System.Windows.Forms.TextBox()
Me.lblCheatLevel = New System.Windows.Forms.Label()
Me._lblViewCard_4 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me._lblAgeCards_0 = New System.Windows.Forms.Label()
Me._lblAgeCards_1 = New System.Windows.Forms.Label()
Me._lblAgeCards_2 = New System.Windows.Forms.Label()
Me._lblAgeCards_3 = New System.Windows.Forms.Label()
Me._lblAgeCards_4 = New System.Windows.Forms.Label()
Me._lblAgeCards_5 = New System.Windows.Forms.Label()
Me._lblAgeCards_6 = New System.Windows.Forms.Label()
Me._lblAgeCards_7 = New System.Windows.Forms.Label()
Me._lblAgeCards_8 = New System.Windows.Forms.Label()
Me._lblAgeCards_9 = New System.Windows.Forms.Label()
Me._lblPlayer_0 = New System.Windows.Forms.Label()
Me.Image1 = New System.Windows.Forms.PictureBox()
Me.Image2 = New System.Windows.Forms.PictureBox()
Me.Image3 = New System.Windows.Forms.PictureBox()
Me.Image4 = New System.Windows.Forms.PictureBox()
Me.Image5 = New System.Windows.Forms.PictureBox()
Me.Image6 = New System.Windows.Forms.PictureBox()
Me.Label1 = New System.Windows.Forms.Label()
Me._lblPlayer_1 = New System.Windows.Forms.Label()
Me._lblPlayer_2 = New System.Windows.Forms.Label()
Me._lblPlayer_3 = New System.Windows.Forms.Label()
Me._lblIcon_0 = New System.Windows.Forms.Label()
Me._lblIcon_4 = New System.Windows.Forms.Label()
Me._lblIcon_8 = New System.Windows.Forms.Label()
Me._lblIcon_12 = New System.Windows.Forms.Label()
Me._lblIcon_16 = New System.Windows.Forms.Label()
Me._lblIcon_20 = New System.Windows.Forms.Label()
Me._lblVP_0 = New System.Windows.Forms.Label()
Me._lblIcon_1 = New System.Windows.Forms.Label()
Me._lblIcon_5 = New System.Windows.Forms.Label()
Me._lblIcon_9 = New System.Windows.Forms.Label()
Me._lblIcon_13 = New System.Windows.Forms.Label()
Me._lblIcon_17 = New System.Windows.Forms.Label()
Me._lblIcon_21 = New System.Windows.Forms.Label()
Me._lblVP_1 = New System.Windows.Forms.Label()
Me._lblIcon_2 = New System.Windows.Forms.Label()
Me._lblIcon_6 = New System.Windows.Forms.Label()
Me._lblIcon_10 = New System.Windows.Forms.Label()
Me._lblIcon_14 = New System.Windows.Forms.Label()
Me._lblIcon_18 = New System.Windows.Forms.Label()
Me._lblIcon_22 = New System.Windows.Forms.Label()
Me._lblVP_2 = New System.Windows.Forms.Label()
Me._lblIcon_3 = New System.Windows.Forms.Label()
Me._lblIcon_7 = New System.Windows.Forms.Label()
Me._lblIcon_11 = New System.Windows.Forms.Label()
Me._lblIcon_15 = New System.Windows.Forms.Label()
Me._lblIcon_19 = New System.Windows.Forms.Label()
Me._lblIcon_23 = New System.Windows.Forms.Label()
Me._lblVP_3 = New System.Windows.Forms.Label()
Me._lblScore_0 = New System.Windows.Forms.Label()
Me._lblScore_1 = New System.Windows.Forms.Label()
Me._lblScore_2 = New System.Windows.Forms.Label()
Me._lblScore_3 = New System.Windows.Forms.Label()
Me.Label8 = New System.Windows.Forms.Label()
Me.lblOtherApps = New System.Windows.Forms.Label()
Me._lblOppDetail_14 = New System.Windows.Forms.Label()
Me._lblOppDetail_13 = New System.Windows.Forms.Label()
Me._lblOppDetail_12 = New System.Windows.Forms.Label()
Me._lblOppDetail_11 = New System.Windows.Forms.Label()
Me._lblOppDetail_10 = New System.Windows.Forms.Label()
Me._lblOppDetail_9 = New System.Windows.Forms.Label()
Me._lblOppDetail_8 = New System.Windows.Forms.Label()
Me._lblOppDetail_7 = New System.Windows.Forms.Label()
Me._lblOppDetail_6 = New System.Windows.Forms.Label()
Me._lblOppDetail_5 = New System.Windows.Forms.Label()
Me._lblOppDetail_4 = New System.Windows.Forms.Label()
Me._lblOppDetail_3 = New System.Windows.Forms.Label()
Me._lblOppDetail_2 = New System.Windows.Forms.Label()
Me._lblOppDetail_1 = New System.Windows.Forms.Label()
Me._lblOppDetail_0 = New System.Windows.Forms.Label()
Me._lblScoreTitle_1 = New System.Windows.Forms.Label()
Me._imgScoreIcon_1 = New System.Windows.Forms.PictureBox()
Me._lblScoreTitle_0 = New System.Windows.Forms.Label()
Me._imgScoreIcon_0 = New System.Windows.Forms.PictureBox()
Me.lblScorePile = New System.Windows.Forms.Label()
Me._imgHandIcon_1 = New System.Windows.Forms.PictureBox()
Me._lblOppScore_2 = New System.Windows.Forms.Label()
Me._lblOppHand_2 = New System.Windows.Forms.Label()
Me._lblOppBoard_14 = New System.Windows.Forms.Label()
Me._imgOppBoard_14 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_13 = New System.Windows.Forms.Label()
Me._imgOppBoard_13 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_12 = New System.Windows.Forms.Label()
Me._imgOppBoard_12 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_11 = New System.Windows.Forms.Label()
Me._imgOppBoard_11 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_10 = New System.Windows.Forms.Label()
Me._imgOppBoard_10 = New System.Windows.Forms.PictureBox()
Me._lblPlayerDetail_2 = New System.Windows.Forms.Label()
Me._lblOppScore_1 = New System.Windows.Forms.Label()
Me._lblOppHand_1 = New System.Windows.Forms.Label()
Me._lblOppBoard_9 = New System.Windows.Forms.Label()
Me._imgOppBoard_9 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_8 = New System.Windows.Forms.Label()
Me._imgOppBoard_8 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_7 = New System.Windows.Forms.Label()
Me._imgOppBoard_7 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_6 = New System.Windows.Forms.Label()
Me._imgOppBoard_6 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_5 = New System.Windows.Forms.Label()
Me._imgOppBoard_5 = New System.Windows.Forms.PictureBox()
Me._lblPlayerDetail_1 = New System.Windows.Forms.Label()
Me._lblOppScore_0 = New System.Windows.Forms.Label()
Me._lblOppHand_0 = New System.Windows.Forms.Label()
Me._lblOppBoard_4 = New System.Windows.Forms.Label()
Me._imgOppBoard_4 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_3 = New System.Windows.Forms.Label()
Me._imgOppBoard_3 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_2 = New System.Windows.Forms.Label()
Me._imgOppBoard_2 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_1 = New System.Windows.Forms.Label()
Me._imgOppBoard_1 = New System.Windows.Forms.PictureBox()
Me._lblOppBoard_0 = New System.Windows.Forms.Label()
Me._imgOppBoard_0 = New System.Windows.Forms.PictureBox()
Me._lblPlayerDetail_0 = New System.Windows.Forms.Label()
Me._imgHandIcon_0 = New System.Windows.Forms.PictureBox()
Me._lblBoardDetails_4 = New System.Windows.Forms.Label()
Me._lblBoardDetails_3 = New System.Windows.Forms.Label()
Me._lblBoardDetails_2 = New System.Windows.Forms.Label()
Me._lblBoardDetails_1 = New System.Windows.Forms.Label()
Me._lblBoardDetails_0 = New System.Windows.Forms.Label()
Me.Label6 = New System.Windows.Forms.Label()
Me._imgIconSmall_12 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_13 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_14 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_15 = New System.Windows.Forms.PictureBox()
Me._lblBoardTitle_3 = New System.Windows.Forms.Label()
Me._lblBoardAge_3 = New System.Windows.Forms.Label()
Me._lblDogma_3 = New System.Windows.Forms.Label()
Me._imgBoardDogma_3 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_8 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_9 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_10 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_11 = New System.Windows.Forms.PictureBox()
Me._lblBoardTitle_2 = New System.Windows.Forms.Label()
Me._lblBoardAge_2 = New System.Windows.Forms.Label()
Me._lblDogma_2 = New System.Windows.Forms.Label()
Me._imgBoardDogma_2 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_4 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_5 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_6 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_7 = New System.Windows.Forms.PictureBox()
Me._lblBoardTitle_1 = New System.Windows.Forms.Label()
Me._lblBoardAge_1 = New System.Windows.Forms.Label()
Me._lblDogma_1 = New System.Windows.Forms.Label()
Me._imgBoardDogma_1 = New System.Windows.Forms.PictureBox()
Me._imgBoardDogma_0 = New System.Windows.Forms.PictureBox()
Me._lblDogma_0 = New System.Windows.Forms.Label()
Me._lblBoardAge_0 = New System.Windows.Forms.Label()
Me._lblBoardTitle_0 = New System.Windows.Forms.Label()
Me._imgIconSmall_3 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_2 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_1 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_0 = New System.Windows.Forms.PictureBox()
Me._imgBoard_0 = New System.Windows.Forms.PictureBox()
Me.lblActionsRemaining = New System.Windows.Forms.Label()
Me.lblPrompt = New System.Windows.Forms.Label()
Me.lblRules = New System.Windows.Forms.Label()
Me.imgDogmaSymbol = New System.Windows.Forms.PictureBox()
Me.lblDogmaSymbol = New System.Windows.Forms.Label()
Me.lblLarge = New System.Windows.Forms.Label()
Me._imgLargeIcon_3 = New System.Windows.Forms.PictureBox()
Me._imgLargeIcon_2 = New System.Windows.Forms.PictureBox()
Me._imgLargeIcon_1 = New System.Windows.Forms.PictureBox()
Me._imgLargeIcon_0 = New System.Windows.Forms.PictureBox()
Me._lblAchievement_13 = New System.Windows.Forms.Label()
Me._lblAchievement_12 = New System.Windows.Forms.Label()
Me._lblAchievement_11 = New System.Windows.Forms.Label()
Me._lblAchievement_10 = New System.Windows.Forms.Label()
Me._lblAchievement_9 = New System.Windows.Forms.Label()
Me._lblAchievement_8 = New System.Windows.Forms.Label()
Me._lblAchievement_7 = New System.Windows.Forms.Label()
Me._lblAchievement_6 = New System.Windows.Forms.Label()
Me._lblAchievement_5 = New System.Windows.Forms.Label()
Me._lblAchievement_4 = New System.Windows.Forms.Label()
Me._lblAchievement_3 = New System.Windows.Forms.Label()
Me._lblAchievement_2 = New System.Windows.Forms.Label()
Me._lblAchievement_1 = New System.Windows.Forms.Label()
Me._lblAchievement_0 = New System.Windows.Forms.Label()
Me.lblGoals = New System.Windows.Forms.Label()
Me._imgBoard_3 = New System.Windows.Forms.PictureBox()
Me._imgBoard_2 = New System.Windows.Forms.PictureBox()
Me._imgBoard_1 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_16 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_17 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_18 = New System.Windows.Forms.PictureBox()
Me._imgIconSmall_19 = New System.Windows.Forms.PictureBox()
Me._lblBoardTitle_4 = New System.Windows.Forms.Label()
Me._lblBoardAge_4 = New System.Windows.Forms.Label()
Me._lblDogma_4 = New System.Windows.Forms.Label()
Me._imgBoardDogma_4 = New System.Windows.Forms.PictureBox()
Me._imgBoard_4 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_0 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_1 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_2 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_3 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_4 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_5 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_6 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_7 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_8 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_9 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_10 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_11 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_12 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_13 = New System.Windows.Forms.PictureBox()
Me._imgOppBoardColor_14 = New System.Windows.Forms.PictureBox()
Me._lblHand_0 = New System.Windows.Forms.Label()
Me._imgHandColor_0 = New System.Windows.Forms.PictureBox()
Me._imgScoreColor_0 = New System.Windows.Forms.PictureBox()
Me._imgScoreColor_1 = New System.Windows.Forms.PictureBox()
Me._lblHand_1 = New System.Windows.Forms.Label()
Me._imgHandColor_1 = New System.Windows.Forms.PictureBox()
Me.Label9 = New System.Windows.Forms.Label()
Me.lblHighestTop = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.cmdDogma = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(Me.components)
Me.cmdOddball = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(Me.components)
Me.cmdStack = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(Me.components)
Me.imgBoard = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgBoardDogma = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgHandColor = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgHandIcon = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgIconSmall = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgLargeIcon = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgOppBoard = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgOppBoardColor = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgScoreColor = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.imgScoreIcon = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(Me.components)
Me.lblAchievement = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblAgeCards = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblBoardAge = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblBoardDetails = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblBoardTitle = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblDogma = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblHand = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblIcon = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblOppBoard = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblOppDetail = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblOppHand = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblOppScore = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblPlayer = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblPlayerDetail = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblScore = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblScoreTitle = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblVP = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.lblViewCard = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(Me.components)
Me.imgLarge = New System.Windows.Forms.PictureBox()
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
Me.FileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.LoadGameToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.SaveGameToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.RestartNewGameToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ExitToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.HelpToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.AboutToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ShortCutsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.AboutToolStripMenuItem1 = New System.Windows.Forms.ToolStripMenuItem()
CType(Me.Image1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.Image2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.Image3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.Image4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.Image5, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.Image6, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgScoreIcon_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgScoreIcon_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgHandIcon_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_14, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_13, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_12, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_11, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_10, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_9, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_8, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_7, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_6, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_5, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoard_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgHandIcon_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_12, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_13, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_14, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_15, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoardDogma_3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_8, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_9, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_10, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_11, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoardDogma_2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_5, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_6, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_7, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoardDogma_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoardDogma_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoard_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgDogmaSymbol, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgLargeIcon_3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgLargeIcon_2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgLargeIcon_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgLargeIcon_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoard_3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoard_2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoard_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_16, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_17, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_18, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgIconSmall_19, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoardDogma_4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgBoard_4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_5, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_6, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_7, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_8, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_9, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_10, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_11, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_12, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_13, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgOppBoardColor_14, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgHandColor_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgScoreColor_0, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgScoreColor_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me._imgHandColor_1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.cmdDogma, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.cmdOddball, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.cmdStack, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgBoard, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgBoardDogma, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgHandColor, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgHandIcon, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgIconSmall, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgLargeIcon, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgOppBoard, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgOppBoardColor, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgScoreColor, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgScoreIcon, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblAchievement, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblAgeCards, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblBoardAge, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblBoardDetails, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblBoardTitle, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblDogma, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblHand, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblIcon, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblOppBoard, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblOppDetail, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblOppHand, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblOppScore, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblPlayer, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblPlayerDetail, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblScore, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblScoreTitle, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblVP, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.lblViewCard, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.imgLarge, System.ComponentModel.ISupportInitialize).BeginInit()
Me.MenuStrip1.SuspendLayout()
Me.SuspendLayout()
'
'ShapeContainer1
'
Me.ShapeContainer1.Location = New System.Drawing.Point(0, 0)
Me.ShapeContainer1.Margin = New System.Windows.Forms.Padding(0)
Me.ShapeContainer1.Name = "ShapeContainer1"
Me.ShapeContainer1.Shapes.AddRange(New Microsoft.VisualBasic.PowerPacks.Shape() {Me.LineShape1, Me.Line10, Me.Line9, Me.Line1, Me.Line8, Me.Line7, Me.Line6, Me.Line5, Me.Line4, Me.Line3, Me.Line2})
Me.ShapeContainer1.Size = New System.Drawing.Size(1380, 836)
Me.ShapeContainer1.TabIndex = 252
Me.ShapeContainer1.TabStop = False
'
'LineShape1
'
Me.LineShape1.Name = "LineShape1"
Me.LineShape1.X1 = -3
Me.LineShape1.X2 = 1383
Me.LineShape1.Y1 = 22
Me.LineShape1.Y2 = 20
'
'Line10
'
Me.Line10.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line10.Name = "Line10"
Me.Line10.X1 = 255
Me.Line10.X2 = -1
Me.Line10.Y1 = 190
Me.Line10.Y2 = 190
'
'Line9
'
Me.Line9.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line9.Name = "Line9"
Me.Line9.X1 = 302
Me.Line9.X2 = 301
Me.Line9.Y1 = 188
Me.Line9.Y2 = 33
'
'Line1
'
Me.Line1.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line1.Name = "Line1"
Me.Line1.X1 = 259
Me.Line1.X2 = 258
Me.Line1.Y1 = 864
Me.Line1.Y2 = 190
'
'Line8
'
Me.Line8.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line8.Name = "Line8"
Me.Line8.X1 = 688
Me.Line8.X2 = 688
Me.Line8.Y1 = 336
Me.Line8.Y2 = 512
'
'Line7
'
Me.Line7.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line7.Name = "Line7"
Me.Line7.X1 = 256
Me.Line7.X2 = 1381
Me.Line7.Y1 = 512
Me.Line7.Y2 = 512
'
'Line6
'
Me.Line6.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line6.Name = "Line6"
Me.Line6.X1 = 256
Me.Line6.X2 = 1384
Me.Line6.Y1 = 336
Me.Line6.Y2 = 336
'
'Line5
'
Me.Line5.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line5.Name = "Line5"
Me.Line5.X1 = 0
Me.Line5.X2 = 1383
Me.Line5.Y1 = 190
Me.Line5.Y2 = 190
'
'Line4
'
Me.Line4.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line4.Name = "Line4"
Me.Line4.X1 = 257
Me.Line4.X2 = 1
Me.Line4.Y1 = 419
Me.Line4.Y2 = 419
'
'Line3
'
Me.Line3.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line3.Name = "Line3"
Me.Line3.X1 = 255
Me.Line3.X2 = -1
Me.Line3.Y1 = 397
Me.Line3.Y2 = 397
'
'Line2
'
Me.Line2.BorderColor = System.Drawing.SystemColors.WindowText
Me.Line2.Name = "Line2"
Me.Line2.X1 = 258
Me.Line2.X2 = 2
Me.Line2.Y1 = 667
Me.Line2.Y2 = 667
'
'cmbCheatLevel
'
Me.cmbCheatLevel.BackColor = System.Drawing.SystemColors.Window
Me.cmbCheatLevel.Cursor = System.Windows.Forms.Cursors.Default
Me.cmbCheatLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.cmbCheatLevel.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmbCheatLevel.ForeColor = System.Drawing.SystemColors.WindowText
Me.cmbCheatLevel.Location = New System.Drawing.Point(504, 96)
Me.cmbCheatLevel.Name = "cmbCheatLevel"
Me.cmbCheatLevel.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.cmbCheatLevel.Size = New System.Drawing.Size(176, 26)
Me.cmbCheatLevel.TabIndex = 170
'
'cmdScore
'
Me.cmdScore.BackColor = System.Drawing.SystemColors.Control
Me.cmdScore.Cursor = System.Windows.Forms.Cursors.Default
Me.cmdScore.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdScore.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdScore.Location = New System.Drawing.Point(928, 344)
Me.cmdScore.Name = "cmdScore"
Me.cmdScore.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.cmdScore.Size = New System.Drawing.Size(154, 25)
Me.cmdScore.TabIndex = 169
Me.cmdScore.Text = "View Entire Pile as List"
Me.cmdScore.UseVisualStyleBackColor = False
'
'cmbCards
'
Me.cmbCards.BackColor = System.Drawing.SystemColors.Window
Me.cmbCards.Cursor = System.Windows.Forms.Cursors.Default
Me.cmbCards.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.cmbCards.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmbCards.ForeColor = System.Drawing.SystemColors.WindowText
Me.cmbCards.Location = New System.Drawing.Point(82, 397)
Me.cmbCards.Name = "cmbCards"
Me.cmbCards.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.cmbCards.Size = New System.Drawing.Size(176, 26)
Me.cmbCards.Sorted = True
Me.cmbCards.TabIndex = 168
'
'_cmdOddball_9
'
Me._cmdOddball_9.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_9.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_9.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_9.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_9, CType(9, Short))
Me._cmdOddball_9.Location = New System.Drawing.Point(833, 127)
Me._cmdOddball_9.Name = "_cmdOddball_9"
Me._cmdOddball_9.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_9.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_9.TabIndex = 166
Me._cmdOddball_9.Text = "Command1"
Me._cmdOddball_9.UseVisualStyleBackColor = False
Me._cmdOddball_9.Visible = False
'
'_cmdOddball_8
'
Me._cmdOddball_8.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_8.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_8.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_8.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_8, CType(8, Short))
Me._cmdOddball_8.Location = New System.Drawing.Point(703, 127)
Me._cmdOddball_8.Name = "_cmdOddball_8"
Me._cmdOddball_8.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_8.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_8.TabIndex = 165
Me._cmdOddball_8.Text = "Command1"
Me._cmdOddball_8.UseVisualStyleBackColor = False
Me._cmdOddball_8.Visible = False
'
'_cmdOddball_7
'
Me._cmdOddball_7.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_7.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_7.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_7.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_7, CType(7, Short))
Me._cmdOddball_7.Location = New System.Drawing.Point(528, 128)
Me._cmdOddball_7.Name = "_cmdOddball_7"
Me._cmdOddball_7.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_7.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_7.TabIndex = 164
Me._cmdOddball_7.Text = "Command1"
Me._cmdOddball_7.UseVisualStyleBackColor = False
Me._cmdOddball_7.Visible = False
'
'_cmdOddball_6
'
Me._cmdOddball_6.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_6.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_6.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_6.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_6, CType(6, Short))
Me._cmdOddball_6.Location = New System.Drawing.Point(432, 128)
Me._cmdOddball_6.Name = "_cmdOddball_6"
Me._cmdOddball_6.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_6.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_6.TabIndex = 163
Me._cmdOddball_6.Text = "Command1"
Me._cmdOddball_6.UseVisualStyleBackColor = False
Me._cmdOddball_6.Visible = False
'
'_cmdOddball_5
'
Me._cmdOddball_5.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_5.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_5.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_5.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_5, CType(5, Short))
Me._cmdOddball_5.Location = New System.Drawing.Point(336, 128)
Me._cmdOddball_5.Name = "_cmdOddball_5"
Me._cmdOddball_5.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_5.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_5.TabIndex = 162
Me._cmdOddball_5.Text = "Command1"
Me._cmdOddball_5.UseVisualStyleBackColor = False
Me._cmdOddball_5.Visible = False
'
'_cmdOddball_4
'
Me._cmdOddball_4.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_4.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_4.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_4.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_4, CType(4, Short))
Me._cmdOddball_4.Location = New System.Drawing.Point(833, 90)
Me._cmdOddball_4.Name = "_cmdOddball_4"
Me._cmdOddball_4.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_4.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_4.TabIndex = 161
Me._cmdOddball_4.Text = "Command1"
Me._cmdOddball_4.UseVisualStyleBackColor = False
Me._cmdOddball_4.Visible = False
'
'_cmdOddball_3
'
Me._cmdOddball_3.BackColor = System.Drawing.SystemColors.Control
Me._cmdOddball_3.Cursor = System.Windows.Forms.Cursors.Default
Me._cmdOddball_3.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me._cmdOddball_3.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdOddball.SetIndex(Me._cmdOddball_3, CType(3, Short))
Me._cmdOddball_3.Location = New System.Drawing.Point(624, 96)
Me._cmdOddball_3.Name = "_cmdOddball_3"
Me._cmdOddball_3.RightToLeft = System.Windows.Forms.RightToLeft.No
Me._cmdOddball_3.Size = New System.Drawing.Size(73, 25)
Me._cmdOddball_3.TabIndex = 160
Me._cmdOddball_3.Text = "Command1"
Me._cmdOddball_3.UseVisualStyleBackColor = False
Me._cmdOddball_3.Visible = False
'
'_cmdOddball_2
'