forked from smbx/smbx-legacy-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmTiles.frm
3452 lines (3450 loc) · 117 KB
/
frmTiles.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 frmTiles
BorderStyle = 1 'Fixed Single
Caption = "Tiles"
ClientHeight = 3525
ClientLeft = 1.00050e5
ClientTop = 330
ClientWidth = 16005
Icon = "frmTiles.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
ScaleHeight = 3525
ScaleWidth = 16005
Begin VB.Frame Game
Caption = "Super Mario World - C"
Height = 3375
Index = 3
Left = 1320
TabIndex = 272
Top = 7080
Width = 8055
Begin VB.OptionButton Tile
Height = 540
Index = 328
Left = 6120
Picture = "frmTiles.frx":628A
Style = 1 'Graphical
TabIndex = 336
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 327
Left = 5520
Picture = "frmTiles.frx":65EE
Style = 1 'Graphical
TabIndex = 335
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 326
Left = 4320
Picture = "frmTiles.frx":6952
Style = 1 'Graphical
TabIndex = 334
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 325
Left = 4920
Picture = "frmTiles.frx":6CFB
Style = 1 'Graphical
TabIndex = 333
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 324
Left = 6120
Picture = "frmTiles.frx":7079
Style = 1 'Graphical
TabIndex = 332
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 323
Left = 4320
Picture = "frmTiles.frx":7162
Style = 1 'Graphical
TabIndex = 331
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 322
Left = 5520
Picture = "frmTiles.frx":7225
Style = 1 'Graphical
TabIndex = 330
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 321
Left = 6720
Picture = "frmTiles.frx":7303
Style = 1 'Graphical
TabIndex = 329
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 320
Left = 4920
Picture = "frmTiles.frx":73E6
Style = 1 'Graphical
TabIndex = 328
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 319
Left = 3720
Picture = "frmTiles.frx":74B4
Style = 1 'Graphical
TabIndex = 327
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 318
Left = 3120
Picture = "frmTiles.frx":7580
Style = 1 'Graphical
TabIndex = 326
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 317
Left = 5520
Picture = "frmTiles.frx":765C
Style = 1 'Graphical
TabIndex = 325
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 316
Left = 7320
Picture = "frmTiles.frx":7714
Style = 1 'Graphical
TabIndex = 324
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 315
Left = 7320
Picture = "frmTiles.frx":77CA
Style = 1 'Graphical
TabIndex = 323
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 314
Left = 3720
Picture = "frmTiles.frx":7B73
Style = 1 'Graphical
TabIndex = 322
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 313
Left = 4320
Picture = "frmTiles.frx":7F58
Style = 1 'Graphical
TabIndex = 321
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 312
Left = 4920
Picture = "frmTiles.frx":8331
Style = 1 'Graphical
TabIndex = 320
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 311
Left = 7320
Picture = "frmTiles.frx":8410
Style = 1 'Graphical
TabIndex = 319
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 310
Left = 2520
Picture = "frmTiles.frx":87A9
Style = 1 'Graphical
TabIndex = 318
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 309
Left = 6720
Picture = "frmTiles.frx":8883
Style = 1 'Graphical
TabIndex = 317
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 308
Left = 1920
Picture = "frmTiles.frx":8C60
Style = 1 'Graphical
TabIndex = 316
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 307
Left = 720
Picture = "frmTiles.frx":8D30
Style = 1 'Graphical
TabIndex = 315
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 306
Left = 3120
Picture = "frmTiles.frx":8DD6
Style = 1 'Graphical
TabIndex = 314
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 305
Left = 3720
Picture = "frmTiles.frx":91BE
Style = 1 'Graphical
TabIndex = 313
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 304
Left = 3120
Picture = "frmTiles.frx":95B7
Style = 1 'Graphical
TabIndex = 312
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 303
Left = 6720
Picture = "frmTiles.frx":99B0
Style = 1 'Graphical
TabIndex = 311
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 302
Left = 1920
Picture = "frmTiles.frx":9D7D
Style = 1 'Graphical
TabIndex = 310
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 301
Left = 6720
Picture = "frmTiles.frx":A11A
Style = 1 'Graphical
TabIndex = 309
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 300
Left = 720
Picture = "frmTiles.frx":A4AE
Style = 1 'Graphical
TabIndex = 308
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 299
Left = 1320
Picture = "frmTiles.frx":A57E
Style = 1 'Graphical
TabIndex = 307
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 298
Left = 4320
Picture = "frmTiles.frx":A614
Style = 1 'Graphical
TabIndex = 306
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 297
Left = 6120
Picture = "frmTiles.frx":A6D2
Style = 1 'Graphical
TabIndex = 305
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 296
Left = 120
Picture = "frmTiles.frx":AA9C
Style = 1 'Graphical
TabIndex = 304
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 295
Left = 7320
Picture = "frmTiles.frx":AE6F
Style = 1 'Graphical
TabIndex = 303
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 294
Left = 6720
Picture = "frmTiles.frx":B204
Style = 1 'Graphical
TabIndex = 302
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 293
Left = 6120
Picture = "frmTiles.frx":B5EF
Style = 1 'Graphical
TabIndex = 301
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 292
Left = 6120
Picture = "frmTiles.frx":B9D2
Style = 1 'Graphical
TabIndex = 300
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 291
Left = 1920
Picture = "frmTiles.frx":BDC0
Style = 1 'Graphical
TabIndex = 299
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 290
Left = 4320
Picture = "frmTiles.frx":BE8E
Style = 1 'Graphical
TabIndex = 298
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 289
Left = 120
Picture = "frmTiles.frx":BF24
Style = 1 'Graphical
TabIndex = 297
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 288
Left = 2520
Picture = "frmTiles.frx":C01D
Style = 1 'Graphical
TabIndex = 296
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 287
Left = 720
Picture = "frmTiles.frx":C0FB
Style = 1 'Graphical
TabIndex = 295
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 286
Left = 1320
Picture = "frmTiles.frx":C1C7
Style = 1 'Graphical
TabIndex = 294
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 285
Left = 720
Picture = "frmTiles.frx":C52B
Style = 1 'Graphical
TabIndex = 293
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 284
Left = 1320
Picture = "frmTiles.frx":C5F7
Style = 1 'Graphical
TabIndex = 292
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 283
Left = 2520
Picture = "frmTiles.frx":C6BA
Style = 1 'Graphical
TabIndex = 291
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 282
Left = 1920
Picture = "frmTiles.frx":C79C
Style = 1 'Graphical
TabIndex = 290
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 281
Left = 3720
Picture = "frmTiles.frx":C842
Style = 1 'Graphical
TabIndex = 289
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 280
Left = 120
Picture = "frmTiles.frx":C91B
Style = 1 'Graphical
TabIndex = 288
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 279
Left = 120
Picture = "frmTiles.frx":C9FC
Style = 1 'Graphical
TabIndex = 287
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 278
Left = 4920
Picture = "frmTiles.frx":CAD8
Style = 1 'Graphical
TabIndex = 286
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 277
Left = 120
Picture = "frmTiles.frx":CBA0
Style = 1 'Graphical
TabIndex = 285
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 276
Left = 1320
Picture = "frmTiles.frx":CC56
Style = 1 'Graphical
TabIndex = 284
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 275
Left = 1920
Picture = "frmTiles.frx":CCD7
Style = 1 'Graphical
TabIndex = 283
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 274
Left = 2520
Picture = "frmTiles.frx":CDA4
Style = 1 'Graphical
TabIndex = 282
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 273
Left = 1320
Picture = "frmTiles.frx":CE5A
Style = 1 'Graphical
TabIndex = 281
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 272
Left = 3120
Picture = "frmTiles.frx":CF22
Style = 1 'Graphical
TabIndex = 280
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 271
Left = 5520
Picture = "frmTiles.frx":CFF3
Style = 1 'Graphical
TabIndex = 279
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 270
Left = 3120
Picture = "frmTiles.frx":D0C0
Style = 1 'Graphical
TabIndex = 278
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 269
Left = 4920
Picture = "frmTiles.frx":D1AD
Style = 1 'Graphical
TabIndex = 277
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 268
Left = 3720
Picture = "frmTiles.frx":D282
Style = 1 'Graphical
TabIndex = 276
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 267
Left = 720
Picture = "frmTiles.frx":D349
Style = 1 'Graphical
TabIndex = 275
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 266
Left = 5520
Picture = "frmTiles.frx":D3F4
Style = 1 'Graphical
TabIndex = 274
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 265
Left = 2520
Picture = "frmTiles.frx":D4E0
Style = 1 'Graphical
TabIndex = 273
Top = 1440
Width = 540
End
End
Begin VB.Frame Game
Caption = "Super Mario World - B"
Height = 3375
Index = 2
Left = 1320
TabIndex = 153
Top = 3600
Width = 14655
Begin VB.OptionButton Tile
Height = 540
Index = 264
Left = 13320
Picture = "frmTiles.frx":D5D8
Style = 1 'Graphical
TabIndex = 271
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 263
Left = 13320
Picture = "frmTiles.frx":DA08
Style = 1 'Graphical
TabIndex = 270
Top = 2640
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 262
Left = 13320
Picture = "frmTiles.frx":DE94
Style = 1 'Graphical
TabIndex = 269
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 261
Left = 13920
Picture = "frmTiles.frx":DFA1
Style = 1 'Graphical
TabIndex = 268
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 260
Left = 13920
Picture = "frmTiles.frx":E0E1
Style = 1 'Graphical
TabIndex = 267
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 259
Left = 13320
Picture = "frmTiles.frx":E212
Style = 1 'Graphical
TabIndex = 266
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 258
Left = 13920
Picture = "frmTiles.frx":E352
Style = 1 'Graphical
TabIndex = 265
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 257
Left = 13320
Picture = "frmTiles.frx":E484
Style = 1 'Graphical
TabIndex = 264
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 242
Left = 12720
Picture = "frmTiles.frx":E5BE
Style = 1 'Graphical
TabIndex = 263
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 241
Left = 12720
Picture = "frmTiles.frx":E956
Style = 1 'Graphical
TabIndex = 262
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 256
Left = 4320
Picture = "frmTiles.frx":ED03
Style = 1 'Graphical
TabIndex = 261
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 255
Left = 3120
Picture = "frmTiles.frx":F0BC
Style = 1 'Graphical
TabIndex = 260
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 254
Left = 4920
Picture = "frmTiles.frx":F491
Style = 1 'Graphical
TabIndex = 259
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 253
Left = 5520
Picture = "frmTiles.frx":F856
Style = 1 'Graphical
TabIndex = 258
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 252
Left = 6120
Picture = "frmTiles.frx":FC2D
Style = 1 'Graphical
TabIndex = 257
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 251
Left = 3720
Picture = "frmTiles.frx":10010
Style = 1 'Graphical
TabIndex = 256
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 250
Left = 3120
Picture = "frmTiles.frx":103D3
Style = 1 'Graphical
TabIndex = 255
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 249
Left = 3720
Picture = "frmTiles.frx":104AD
Style = 1 'Graphical
TabIndex = 254
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 248
Left = 4320
Picture = "frmTiles.frx":1057D
Style = 1 'Graphical
TabIndex = 253
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 247
Left = 4920
Picture = "frmTiles.frx":10613
Style = 1 'Graphical
TabIndex = 252
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 246
Left = 5520
Picture = "frmTiles.frx":106E3
Style = 1 'Graphical
TabIndex = 251
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 245
Left = 6720
Picture = "frmTiles.frx":107BD
Style = 1 'Graphical
TabIndex = 250
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 244
Left = 6720
Picture = "frmTiles.frx":10892
Style = 1 'Graphical
TabIndex = 249
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 243
Left = 6120
Picture = "frmTiles.frx":10975
Style = 1 'Graphical
TabIndex = 248
Top = 840
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 239
Left = 3720
Picture = "frmTiles.frx":10A47
Style = 1 'Graphical
TabIndex = 247
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 238
Left = 3120
Picture = "frmTiles.frx":10E04
Style = 1 'Graphical
TabIndex = 246
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 237
Left = 4920
Picture = "frmTiles.frx":111E9
Style = 1 'Graphical
TabIndex = 245
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 236
Left = 5520
Picture = "frmTiles.frx":115A8
Style = 1 'Graphical
TabIndex = 244
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 235
Left = 4320
Picture = "frmTiles.frx":11992
Style = 1 'Graphical
TabIndex = 243
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 234
Left = 7320
Picture = "frmTiles.frx":11D47
Style = 1 'Graphical
TabIndex = 242
Top = 2040
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 233
Left = 7920
Picture = "frmTiles.frx":11E40
Style = 1 'Graphical
TabIndex = 241
Top = 240
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 232
Left = 8520
Picture = "frmTiles.frx":11F0C
Style = 1 'Graphical
TabIndex = 240
Top = 1440
Width = 540
End
Begin VB.OptionButton Tile
Height = 540
Index = 231
Left = 10920
Picture = "frmTiles.frx":12270
Style = 1 'Graphical
TabIndex = 239
Top = 2040
Width = 540