-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUInclusao.dfm
1946 lines (1830 loc) · 51.8 KB
/
UInclusao.dfm
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
object FInclusao: TFInclusao
Left = 74
Top = 111
Caption = 'INSERIR NOVO JOGO'
ClientHeight = 536
ClientWidth = 1039
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Icon.Data = {
0000010001002020100000000000E80200001600000028000000200000004000
0000010004000000000080020000000000000000000000000000000000000000
000000008000008000000080800080000000800080008080000080808000C0C0
C0000000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF000000
0000000000000000000000000000000000000000000000000000000000000000
000B3B3B3B33330000BB3B3000000000B3B3B3B3333333030BB3303300000003
3330000000000030BB0B3B3330000003333B8B8383333033BBBB333330000000
3333333333330B3B3BB33B3B3B0000000B3B3B3333330B3B33B3BBB3330000B3
B3B3B3B333330B3B333BBB333B0003333000000000000B3B33BBBBB3B3000300
000B3B3B33330B3B333BB0B33B000030B3B3B3B3B3330B3B333BBBB3B3000303
3333333333330B33333BBB3B3B000003000B888383830BB33333333BB0000000
33330000000000B33B3333BB300000033000B3B3B3B3B0BB33330BBB00000000
0B3B3B3B3B3B3B0BB33B3BB00000000033333333333333300B33330000000000
3000BBB838383830003000000000000003333380000000000000000000000000
3338000B3B3B3B3B3B000000000000000330B3B3B3B3B3B3B3B3300000000000
0003333FFFFFF33333333300000000000003088BBBB3B3B3B300030000000000
000033333BBBBB3B3B33300000000000000333B3B3BBBBB3B3B3330000000000
0000333B3BBBBBBB333330000000000000000003B3B3BFFFFB00000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFFF
FFFFFE003C1FF000000FE0000007C0000003C0000003C0000001C00000018000
00010000000100000001000000010000000180000003C0000003C0000007E000
000FE000001FE00000FFE00000FFE000007FF000003FF800001FFC00001FFC00
001FFC00001FFE00003FFF00007FFFE003FFFFFFFFFFFFFFFFFFFFFFFFFF}
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object GroupBoxTimeA: TGroupBox
Left = 2
Top = 0
Width = 333
Height = 211
Caption = 'Time A'
Color = 12582847
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
TabOrder = 0
object GroupBox1: TGroupBox
Left = 6
Top = 20
Width = 319
Height = 61
Caption = 'CASA 1'
Color = 12582847
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
TabOrder = 0
object Label2: TLabel
Left = 10
Top = 18
Width = 80
Height = 13
Caption = 'Arcano Menor'
end
object ComboBoxArcMenorA1: TComboBox
Left = 10
Top = 32
Width = 301
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
object GroupBox3: TGroupBox
Left = 6
Top = 144
Width = 319
Height = 61
Caption = 'CASA 3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
object Label6: TLabel
Left = 10
Top = 18
Width = 80
Height = 13
Caption = 'Arcano Menor'
end
object ComboBoxArcMenorA3: TComboBox
Left = 10
Top = 34
Width = 301
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
object GroupBox2: TGroupBox
Left = 6
Top = 82
Width = 319
Height = 61
Caption = 'CASA 2'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
object Label4: TLabel
Left = 10
Top = 18
Width = 80
Height = 13
Caption = 'Arcano Menor'
end
object ComboBoxArcMenorA2: TComboBox
Left = 10
Top = 34
Width = 301
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
end
object GroupBoxTimeB: TGroupBox
Left = 341
Top = 0
Width = 333
Height = 211
Caption = 'Time B'
Color = 11184895
Font.Charset = DEFAULT_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
TabOrder = 1
object GroupBox5: TGroupBox
Left = 6
Top = 20
Width = 319
Height = 61
Caption = 'CASA 1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
object Label8: TLabel
Left = 10
Top = 18
Width = 80
Height = 13
Caption = 'Arcano Menor'
end
object ComboBoxArcMenorB1: TComboBox
Left = 10
Top = 34
Width = 301
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
object GroupBox6: TGroupBox
Left = 6
Top = 82
Width = 319
Height = 61
Caption = 'CASA 2'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
object Label10: TLabel
Left = 10
Top = 18
Width = 80
Height = 13
Caption = 'Arcano Menor'
end
object ComboBoxArcMenorB2: TComboBox
Left = 10
Top = 34
Width = 301
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
object GroupBox7: TGroupBox
Left = 6
Top = 144
Width = 319
Height = 61
Caption = 'CASA 3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
object Label12: TLabel
Left = 10
Top = 18
Width = 80
Height = 13
Caption = 'Arcano Menor'
end
object ComboBoxArcMenorB3: TComboBox
Left = 10
Top = 34
Width = 301
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
end
object Panel1: TPanel
Left = 684
Top = 2
Width = 353
Height = 86
BorderStyle = bsSingle
TabOrder = 2
object Label13: TLabel
Left = 4
Top = 2
Width = 255
Height = 13
Caption = 'PREVIS'#195'O: escolha o time para compara'#231#227'o'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object RadioGroupTime: TRadioGroup
Left = 10
Top = 25
Width = 61
Height = 47
Caption = 'Time'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Items.Strings = (
'A'
'B')
ParentFont = False
TabOrder = 0
end
object BitBtnPrever: TBitBtn
Left = 91
Top = 33
Width = 120
Height = 38
Caption = 'Prever Vit'#243'ria'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
04000000000000010000120B0000120B00001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333303333
333333333337FF3333333333330003333333333333777F333333333333080333
3333333F33777FF33F3333B33B000B33B3333373F777773F7333333BBB0B0BBB
33333337737F7F77F333333BBB0F0BBB33333337337373F73F3333BBB0F7F0BB
B333337F3737F73F7F3333BB0FB7BF0BB3333F737F37F37F73FFBBBB0BF7FB0B
BBB3773F7F37337F377333BB0FBFBF0BB333337F73F333737F3333BBB0FBF0BB
B3333373F73FF7337333333BBB000BBB33333337FF777337F333333BBBBBBBBB
3333333773FF3F773F3333B33BBBBB33B33333733773773373333333333B3333
333333333337F33333333333333B333333333333333733333333}
NumGlyphs = 2
ParentFont = False
TabOrder = 1
OnClick = BitBtnPreverClick
end
object BitBtnLimpar: TBitBtn
Left = 217
Top = 33
Width = 120
Height = 38
Caption = 'Limpar'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Glyph.Data = {
DE010000424DDE01000000000000760000002800000024000000120000000100
0400000000006801000000000000000000001000000000000000000000000000
80000080000000808000800000008000800080800000C0C0C000808080000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333444444
33333333333F8888883F33330000324334222222443333388F3833333388F333
000032244222222222433338F8833FFFFF338F3300003222222AAAAA22243338
F333F88888F338F30000322222A33333A2224338F33F8333338F338F00003222
223333333A224338F33833333338F38F00003222222333333A444338FFFF8F33
3338888300003AAAAAAA33333333333888888833333333330000333333333333
333333333333333333FFFFFF000033333333333344444433FFFF333333888888
00003A444333333A22222438888F333338F3333800003A2243333333A2222438
F38F333333833338000033A224333334422224338338FFFFF8833338000033A2
22444442222224338F3388888333FF380000333A2222222222AA243338FF3333
33FF88F800003333AA222222AA33A3333388FFFFFF8833830000333333AAAAAA
3333333333338888883333330000333333333333333333333333333333333333
0000}
NumGlyphs = 2
ParentFont = False
TabOrder = 2
OnClick = BitBtnLimparClick
end
end
object Panel52: TPanel
Left = 685
Top = 90
Width = 352
Height = 121
BorderStyle = bsSingle
TabOrder = 3
object Label34: TLabel
Left = 4
Top = 2
Width = 242
Height = 13
Caption = 'INCLUS'#195'O: selecione o resultado do jogo'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object RadioGroupResultado: TRadioGroup
Left = 6
Top = 21
Width = 121
Height = 88
Caption = 'Time'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ItemIndex = 3
Items.Strings = (
'A'
'B'
'Empate'
'Sem resultado')
ParentFont = False
TabOrder = 0
end
object BitBtnInserir: TBitBtn
Left = 175
Top = 60
Width = 120
Height = 38
Caption = 'INCLUIR'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
04000000000000010000130B0000130B00001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
33333333FF33333333FF333993333333300033377F3333333777333993333333
300033F77FFF3333377739999993333333333777777F3333333F399999933333
33003777777333333377333993333333330033377F3333333377333993333333
3333333773333333333F333333333333330033333333F33333773333333C3333
330033333337FF3333773333333CC333333333FFFFF77FFF3FF33CCCCCCCCCC3
993337777777777F77F33CCCCCCCCCC3993337777777777377333333333CC333
333333333337733333FF3333333C333330003333333733333777333333333333
3000333333333333377733333333333333333333333333333333}
NumGlyphs = 2
ParentFont = False
TabOrder = 1
OnClick = BitBtnInserirClick
end
end
object SG1: TStringGrid
Left = 578
Top = 82
Width = 311
Height = 20
ColCount = 8
DefaultRowHeight = 18
FixedCols = 0
RowCount = 13
ScrollBars = ssVertical
TabOrder = 4
Visible = False
ColWidths = (
37
38
30
31
216
31
27
26)
end
object SG2: TStringGrid
Left = 578
Top = 108
Width = 311
Height = 20
ColCount = 8
DefaultRowHeight = 18
FixedCols = 0
RowCount = 13
ScrollBars = ssVertical
TabOrder = 5
Visible = False
ColWidths = (
37
38
30
31
31
31
27
26)
end
object PageControl1: TPageControl
Left = 2
Top = 212
Width = 1035
Height = 323
ActivePage = TabSheet1
TabOrder = 6
object TabSheet1: TTabSheet
Caption = 'PADR'#195'O 1'
ImageIndex = 2
object Panel50: TPanel
Left = 207
Top = 251
Width = 617
Height = 41
BorderStyle = bsSingle
Enabled = False
TabOrder = 0
object Label26: TLabel
Left = 10
Top = 6
Width = 88
Height = 20
Caption = 'Resultado:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label27: TLabel
Left = 134
Top = 9
Width = 67
Height = 20
Caption = 'Vit'#243'rias:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label28: TLabel
Left = 288
Top = 9
Width = 76
Height = 20
Caption = 'Derrotas:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label29: TLabel
Left = 446
Top = 9
Width = 77
Height = 20
Caption = 'Empates:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object EdVitorias1: TEdit
Left = 204
Top = 8
Width = 55
Height = 21
TabOrder = 0
end
object EdDerrotas1: TEdit
Left = 370
Top = 8
Width = 55
Height = 21
TabOrder = 1
end
object EdEmpates1: TEdit
Left = 525
Top = 8
Width = 55
Height = 21
TabOrder = 2
end
end
object Panel5: TPanel
Left = 2
Top = 0
Width = 54
Height = 45
BevelKind = bkSoft
Caption = 'VIT'#211'RIA'
Color = 12189695
ParentBackground = False
TabOrder = 1
end
object Panel7: TPanel
Left = 54
Top = 0
Width = 436
Height = 24
BevelKind = bkSoft
Caption = 'TIME A'
Color = 12189695
ParentBackground = False
TabOrder = 3
end
object Panel6: TPanel
Left = 54
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CASA 1'
Color = 12189695
ParentBackground = False
TabOrder = 2
end
object Panel8: TPanel
Left = 199
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A2'
Color = 12189695
ParentBackground = False
TabOrder = 4
end
object Panel9: TPanel
Left = 344
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A3'
Color = 12189695
ParentBackground = False
TabOrder = 5
end
object Panel10: TPanel
Left = 488
Top = 0
Width = 434
Height = 24
BevelKind = bkSoft
Caption = 'TIME A'
Color = 12189695
ParentBackground = False
TabOrder = 6
end
object Panel12: TPanel
Left = 488
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CASA 1'
Color = 12189695
ParentBackground = False
TabOrder = 7
end
object Panel13: TPanel
Left = 632
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A2'
Color = 12189695
ParentBackground = False
TabOrder = 8
end
object Panel14: TPanel
Left = 776
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A3'
Color = 12189695
ParentBackground = False
TabOrder = 9
end
object StringGrid01: TStringGrid
Left = 2
Top = 44
Width = 937
Height = 195
Color = clWhite
ColCount = 8
DefaultRowHeight = 18
DefaultDrawing = False
FixedCols = 0
RowCount = 13
FixedRows = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSelect]
ScrollBars = ssVertical
TabOrder = 10
OnDrawCell = StringGrid01DrawCell
ColWidths = (
51
144
143
144
141
144
176
84)
end
end
object TabSheet2: TTabSheet
Caption = 'PADR'#195'O 2'
ImageIndex = 3
object Panel51: TPanel
Left = 205
Top = 251
Width = 617
Height = 41
BorderStyle = bsSingle
Enabled = False
TabOrder = 0
object Label30: TLabel
Left = 10
Top = 6
Width = 88
Height = 20
Caption = 'Resultado:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label31: TLabel
Left = 134
Top = 9
Width = 67
Height = 20
Caption = 'Vit'#243'rias:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label32: TLabel
Left = 288
Top = 9
Width = 76
Height = 20
Caption = 'Derrotas:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label33: TLabel
Left = 446
Top = 9
Width = 77
Height = 20
Caption = 'Empates:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object EdVitorias2: TEdit
Left = 204
Top = 8
Width = 55
Height = 21
Color = clWhite
TabOrder = 0
end
object EdDerrotas2: TEdit
Left = 370
Top = 8
Width = 55
Height = 21
TabOrder = 1
end
object EdEmpates2: TEdit
Left = 525
Top = 8
Width = 55
Height = 21
TabOrder = 2
end
end
object Panel17: TPanel
Left = 777
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A3'
Color = 12189695
ParentBackground = False
TabOrder = 1
end
object Panel18: TPanel
Left = 633
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A2'
Color = 12189695
ParentBackground = False
TabOrder = 2
end
object Panel19: TPanel
Left = 489
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CASA 1'
Color = 12189695
ParentBackground = False
TabOrder = 3
end
object Panel20: TPanel
Left = 489
Top = 0
Width = 434
Height = 24
BevelKind = bkSoft
Caption = 'TIME A'
Color = 12189695
ParentBackground = False
TabOrder = 4
end
object Panel21: TPanel
Left = 55
Top = 0
Width = 436
Height = 24
BevelKind = bkSoft
Caption = 'TIME A'
Color = 12189695
ParentBackground = False
TabOrder = 5
end
object Panel22: TPanel
Left = 345
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A3'
Color = 12189695
ParentBackground = False
TabOrder = 6
end
object Panel23: TPanel
Left = 200
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A2'
Color = 12189695
ParentBackground = False
TabOrder = 7
end
object Panel24: TPanel
Left = 55
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CASA 1'
Color = 12189695
ParentBackground = False
TabOrder = 8
end
object Panel25: TPanel
Left = 2
Top = 0
Width = 54
Height = 45
BevelKind = bkSoft
Caption = 'VIT'#211'RIA'
Color = 12189695
ParentBackground = False
TabOrder = 9
end
object StringGrid02: TStringGrid
Left = 2
Top = 44
Width = 936
Height = 195
ColCount = 8
DefaultRowHeight = 18
DefaultDrawing = False
FixedCols = 0
RowCount = 13
FixedRows = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSelect]
ScrollBars = ssVertical
TabOrder = 10
OnDrawCell = StringGrid02DrawCell
ColWidths = (
51
144
143
144
141
144
170
84)
end
end
object TabSheet3: TTabSheet
Caption = 'PADR'#195'O 3'
ImageIndex = 2
object Panel2: TPanel
Left = 2
Top = 0
Width = 54
Height = 45
BevelKind = bkSoft
Caption = 'VIT'#211'RIA'
Color = 12189695
ParentBackground = False
TabOrder = 0
end
object Panel3: TPanel
Left = 54
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CASA 1'
Color = 12189695
ParentBackground = False
TabOrder = 1
end
object Panel4: TPanel
Left = 54
Top = 0
Width = 436
Height = 24
BevelKind = bkSoft
Caption = 'TIME A'
Color = 12189695
ParentBackground = False
TabOrder = 2
end
object Panel11: TPanel
Left = 199
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A2'
Color = 12189695
ParentBackground = False
TabOrder = 3
end
object Panel15: TPanel
Left = 344
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CAS A3'
Color = 12189695
ParentBackground = False
TabOrder = 4
end
object Panel16: TPanel
Left = 488
Top = 21
Width = 146
Height = 24
BevelKind = bkSoft
Caption = 'CASA 1'
Color = 12189695
ParentBackground = False
TabOrder = 5
end
object Panel26: TPanel
Left = 488