This repository was archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathfrmBlocks.frm
8799 lines (8776 loc) · 322 KB
/
frmBlocks.frm
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
VERSION 5.00
Begin VB.Form frmBlocks
BorderStyle = 1 'Fixed Single
Caption = "Blocks and Tiles"
ClientHeight = 3690
ClientLeft = 1.00050e5
ClientTop = 80430
ClientWidth = 12045
Icon = "frmBlocks.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3690
ScaleWidth = 12045
ShowInTaskbar = 0 'False
Visible = 0 'False
Begin VB.CheckBox chkFill
Caption = "Fill"
Height = 375
Left = 11160
Style = 1 'Graphical
TabIndex = 775
Top = 240
Width = 735
End
Begin VB.Frame Frame
Caption = "Slippery"
Height = 615
Index = 0
Left = 1680
TabIndex = 771
Top = 2400
Width = 975
Begin VB.CommandButton cmdSlip
Caption = "No"
Height = 255
Left = 120
TabIndex = 772
Top = 240
Width = 735
End
End
Begin VB.Frame Frame
Caption = "Block Size"
Height = 1095
Index = 33
Left = 1680
TabIndex = 430
Top = 720
Width = 975
Begin VB.CommandButton BlockR
Height = 255
Left = 360
TabIndex = 433
Top = 480
Width = 255
End
Begin VB.HScrollBar BlockW
Height = 255
Left = 120
Max = 99
Min = 2
TabIndex = 432
Top = 480
Value = 2
Width = 735
End
Begin VB.VScrollBar BlockH
Height = 735
Left = 360
Max = 99
Min = 2
TabIndex = 431
Top = 240
Value = 2
Width = 255
End
End
Begin VB.Frame Game
Caption = "Misc."
Height = 2535
Index = 4
Left = 8640
TabIndex = 349
Top = 9720
Visible = 0 'False
Width = 8535
Begin VB.Frame Misc
Caption = "Players"
Height = 1575
Index = 3
Left = 1560
TabIndex = 758
Top = 4800
Width = 3255
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 632
Left = 2520
Picture = "frmBlocks.frx":628A
Style = 1 'Graphical
TabIndex = 770
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 631
Left = 2520
Picture = "frmBlocks.frx":6691
Style = 1 'Graphical
TabIndex = 769
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 629
Left = 1920
Picture = "frmBlocks.frx":6A8F
Style = 1 'Graphical
TabIndex = 767
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 628
Left = 1320
Picture = "frmBlocks.frx":6E96
Style = 1 'Graphical
TabIndex = 766
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 627
Left = 720
Picture = "frmBlocks.frx":729D
Style = 1 'Graphical
TabIndex = 765
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 626
Left = 120
Picture = "frmBlocks.frx":76A4
Style = 1 'Graphical
TabIndex = 764
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 625
Left = 1920
Picture = "frmBlocks.frx":7AAB
Style = 1 'Graphical
TabIndex = 763
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 624
Left = 1320
Picture = "frmBlocks.frx":7EAC
Style = 1 'Graphical
TabIndex = 762
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 623
Left = 720
Picture = "frmBlocks.frx":82B2
Style = 1 'Graphical
TabIndex = 761
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 622
Left = 120
Picture = "frmBlocks.frx":86B0
Style = 1 'Graphical
TabIndex = 759
Top = 240
Width = 540
End
End
Begin VB.Frame Misc
Caption = "Metroid (B)"
Height = 2175
Index = 2
Left = 1560
TabIndex = 677
Top = 2520
Visible = 0 'False
Width = 5055
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 567
Left = 720
Picture = "frmBlocks.frx":8AC4
Style = 1 'Graphical
TabIndex = 700
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 566
Left = 1920
Picture = "frmBlocks.frx":8EE5
Style = 1 'Graphical
TabIndex = 699
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 565
Left = 120
Picture = "frmBlocks.frx":92CC
Style = 1 'Graphical
TabIndex = 698
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 564
Left = 2520
Picture = "frmBlocks.frx":96E9
Style = 1 'Graphical
TabIndex = 697
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 563
Left = 1320
Picture = "frmBlocks.frx":9B2A
Style = 1 'Graphical
TabIndex = 696
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 562
Left = 3120
Picture = "frmBlocks.frx":9F33
Style = 1 'Graphical
TabIndex = 695
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 561
Left = 1320
Picture = "frmBlocks.frx":A360
Style = 1 'Graphical
TabIndex = 694
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 560
Left = 3720
Picture = "frmBlocks.frx":A779
Style = 1 'Graphical
TabIndex = 693
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 559
Left = 3120
Picture = "frmBlocks.frx":ABBD
Style = 1 'Graphical
TabIndex = 692
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 558
Left = 1920
Picture = "frmBlocks.frx":AFF8
Style = 1 'Graphical
TabIndex = 691
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 557
Left = 1920
Picture = "frmBlocks.frx":B3C6
Style = 1 'Graphical
TabIndex = 690
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 556
Left = 720
Picture = "frmBlocks.frx":B7B4
Style = 1 'Graphical
TabIndex = 689
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 555
Left = 2520
Picture = "frmBlocks.frx":BBCC
Style = 1 'Graphical
TabIndex = 688
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 554
Left = 720
Picture = "frmBlocks.frx":BFF5
Style = 1 'Graphical
TabIndex = 687
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 553
Left = 120
Picture = "frmBlocks.frx":C427
Style = 1 'Graphical
TabIndex = 686
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 552
Left = 2520
Picture = "frmBlocks.frx":C84C
Style = 1 'Graphical
TabIndex = 685
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 551
Left = 1320
Picture = "frmBlocks.frx":CC77
Style = 1 'Graphical
TabIndex = 684
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 550
Left = 120
Picture = "frmBlocks.frx":D024
Style = 1 'Graphical
TabIndex = 683
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 549
Left = 4320
Picture = "frmBlocks.frx":D42E
Style = 1 'Graphical
TabIndex = 682
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 548
Left = 4320
Picture = "frmBlocks.frx":D86A
Style = 1 'Graphical
TabIndex = 681
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 547
Left = 3720
Picture = "frmBlocks.frx":DC6C
Style = 1 'Graphical
TabIndex = 680
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 546
Left = 3720
Picture = "frmBlocks.frx":E099
Style = 1 'Graphical
TabIndex = 679
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 545
Left = 3120
Picture = "frmBlocks.frx":E4A7
Style = 1 'Graphical
TabIndex = 678
Top = 840
Width = 540
End
End
Begin VB.Frame Misc
Caption = "Metroid (A)"
Height = 2175
Index = 1
Left = 1560
TabIndex = 643
Top = 240
Width = 6855
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 512
Left = 4920
Picture = "frmBlocks.frx":E8CC
Style = 1 'Graphical
TabIndex = 676
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 513
Left = 3720
Picture = "frmBlocks.frx":ECEE
Style = 1 'Graphical
TabIndex = 675
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 514
Left = 3720
Picture = "frmBlocks.frx":F0B9
Style = 1 'Graphical
TabIndex = 674
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 515
Left = 3120
Picture = "frmBlocks.frx":F4B9
Style = 1 'Graphical
TabIndex = 673
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 516
Left = 2520
Picture = "frmBlocks.frx":F88F
Style = 1 'Graphical
TabIndex = 672
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 517
Left = 3120
Picture = "frmBlocks.frx":FCBD
Style = 1 'Graphical
TabIndex = 671
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 518
Left = 4320
Picture = "frmBlocks.frx":100CC
Style = 1 'Graphical
TabIndex = 670
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 519
Left = 120
Picture = "frmBlocks.frx":104DE
Style = 1 'Graphical
TabIndex = 669
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 520
Left = 120
Picture = "frmBlocks.frx":10913
Style = 1 'Graphical
TabIndex = 668
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 521
Left = 1320
Picture = "frmBlocks.frx":10D27
Style = 1 'Graphical
TabIndex = 667
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 522
Left = 120
Picture = "frmBlocks.frx":11188
Style = 1 'Graphical
TabIndex = 666
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 523
Left = 1320
Picture = "frmBlocks.frx":115DA
Style = 1 'Graphical
TabIndex = 665
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 524
Left = 720
Picture = "frmBlocks.frx":119EC
Style = 1 'Graphical
TabIndex = 664
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 525
Left = 1320
Picture = "frmBlocks.frx":11DA0
Style = 1 'Graphical
TabIndex = 663
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 526
Left = 720
Picture = "frmBlocks.frx":121B5
Style = 1 'Graphical
TabIndex = 662
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 527
Left = 1920
Picture = "frmBlocks.frx":1260F
Style = 1 'Graphical
TabIndex = 661
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 528
Left = 720
Picture = "frmBlocks.frx":12A5B
Style = 1 'Graphical
TabIndex = 660
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 529
Left = 1920
Picture = "frmBlocks.frx":12EA0
Style = 1 'Graphical
TabIndex = 659
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 530
Left = 1920
Picture = "frmBlocks.frx":13286
Style = 1 'Graphical
TabIndex = 658
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 531
Left = 2520
Picture = "frmBlocks.frx":13755
Style = 1 'Graphical
TabIndex = 657
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 532
Left = 2520
Picture = "frmBlocks.frx":13B83
Style = 1 'Graphical
TabIndex = 656
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 533
Left = 4320
Picture = "frmBlocks.frx":13F97
Style = 1 'Graphical
TabIndex = 655
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 534
Left = 5520
Picture = "frmBlocks.frx":14368
Style = 1 'Graphical
TabIndex = 654
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 535
Left = 6120
Picture = "frmBlocks.frx":14732
Style = 1 'Graphical
TabIndex = 653
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 536
Left = 5520
Picture = "frmBlocks.frx":14B00
Style = 1 'Graphical
TabIndex = 652
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 537
Left = 6120
Picture = "frmBlocks.frx":14ECD
Style = 1 'Graphical
TabIndex = 651
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 538
Left = 3120
Picture = "frmBlocks.frx":15280
Style = 1 'Graphical
TabIndex = 650
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 539
Left = 4920
Picture = "frmBlocks.frx":1566B
Style = 1 'Graphical
TabIndex = 649
Top = 840
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 540
Left = 6120
Picture = "frmBlocks.frx":15ACA
Style = 1 'Graphical
TabIndex = 648
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 541
Left = 5520
Picture = "frmBlocks.frx":15EBC
Style = 1 'Graphical
TabIndex = 647
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 542
Left = 4920
Picture = "frmBlocks.frx":162F4
Style = 1 'Graphical
TabIndex = 646
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 543
Left = 4320
Picture = "frmBlocks.frx":16731
Style = 1 'Graphical
TabIndex = 645
Top = 1440
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 544
Left = 3720
Picture = "frmBlocks.frx":16B4D
Style = 1 'Graphical
TabIndex = 644
Top = 1440
Width = 540
End
End
Begin VB.Frame Frame4
Caption = "Tile Set"
Height = 1335
Left = 120
TabIndex = 639
Top = 240
Width = 1335
Begin VB.OptionButton optMisc
Caption = "Players"
Height = 255
Index = 3
Left = 120
Style = 1 'Graphical
TabIndex = 760
Top = 960
Width = 1095
End
Begin VB.OptionButton optMisc
Caption = "Metroid (B)"
Height = 255
Index = 2
Left = 120
Style = 1 'Graphical
TabIndex = 642
Top = 720
Width = 1095
End
Begin VB.OptionButton optMisc
Caption = "Metroid (A)"
Height = 255
Index = 1
Left = 120
Style = 1 'Graphical
TabIndex = 641
Top = 480
Width = 1095
End
Begin VB.OptionButton optMisc
Caption = "Zelda"
Height = 255
Index = 0
Left = 120
Style = 1 'Graphical
TabIndex = 640
Top = 240
Value = -1 'True
Width = 1095
End
End
Begin VB.Frame Misc
Caption = "Zelda 2"
Height = 1575
Index = 0
Left = 6720
TabIndex = 636
Top = 2520
Width = 855
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 291
Left = 120
Picture = "frmBlocks.frx":16F78
Style = 1 'Graphical
TabIndex = 638
Top = 240
Width = 540
End
Begin VB.OptionButton Block
BackColor = &H00000000&
Height = 540
Index = 292
Left = 120
Picture = "frmBlocks.frx":1737D
Style = 1 'Graphical
TabIndex = 637
Top = 840
Width = 540
End
End
End
Begin VB.OptionButton Block
Height = 540
Index = 183
Left = 20640
Picture = "frmBlocks.frx":1775E
Style = 1 'Graphical
TabIndex = 339
Top = 12840
Visible = 0 'False
Width = 540
End
Begin VB.Frame Frame1
Caption = "Events"
Height = 615
Left = 1680
TabIndex = 334
Top = 3000
Width = 975
Begin VB.CommandButton cmdAdvanced
Caption = "Show"
Height = 255
Left = 120
TabIndex = 335
Top = 240
Width = 735
End
End
Begin VB.Frame Frame
Caption = "Block Contents"
Height = 3495
Index = 30
Left = 120
TabIndex = 170
Top = 120
Width = 1455
Begin VB.CommandButton qBlockS
Caption = "Yoshi"
Height = 255
Index = 95
Left = 120
TabIndex = 480
Top = 3120
Width = 1215
End
Begin VB.CommandButton qBlockS
Caption = "1-Up"
Height = 255
Index = 90
Left = 120
TabIndex = 479
Top = 2880
Width = 1215
End
Begin VB.CommandButton qBlockS
Caption = "Tanooki Suit"
Height = 255
Index = 169
Left = 120
TabIndex = 478
Top = 2640
Width = 1215
End
Begin VB.CommandButton qBlockS
Caption = "Leaf"
Height = 255
Index = 34
Left = 120
TabIndex = 415
Top = 2400
Width = 1215
End
Begin VB.CommandButton qBlockS
Caption = "Fire Flower"
Height = 255
Index = 14
Left = 120
TabIndex = 414