forked from smbx/smbx-legacy-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmBackgrounds.frm
2547 lines (2544 loc) · 94 KB
/
frmBackgrounds.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 frmBackgrounds
BorderStyle = 1 'Fixed Single
Caption = "Background Objects"
ClientHeight = 3810
ClientLeft = -19950
ClientTop = 330
ClientWidth = 15210
Icon = "frmBackgrounds.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3810
ScaleWidth = 15210
Visible = 0 'False
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 160
Left = 17880
Picture = "frmBackgrounds.frx":628A
Style = 1 'Graphical
TabIndex = 198
Top = 480
Visible = 0 'False
Width = 540
End
Begin VB.Frame Game
Caption = "Misc."
Height = 2535
Index = 4
Left = 9120
TabIndex = 146
Top = 10200
Visible = 0 'False
Width = 5655
Begin VB.Frame Frame6
Caption = "Metroid"
Height = 2175
Left = 3480
TabIndex = 184
Top = 240
Width = 2055
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 157
Left = 1320
Picture = "frmBackgrounds.frx":665A
Style = 1 'Graphical
TabIndex = 191
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 156
Left = 720
Picture = "frmBackgrounds.frx":6A10
Style = 1 'Graphical
TabIndex = 190
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 155
Left = 720
Picture = "frmBackgrounds.frx":6DCF
Style = 1 'Graphical
TabIndex = 189
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 154
Left = 1320
Picture = "frmBackgrounds.frx":718D
Style = 1 'Graphical
TabIndex = 188
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 153
Left = 120
Picture = "frmBackgrounds.frx":7549
Style = 1 'Graphical
TabIndex = 187
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 152
Left = 120
Picture = "frmBackgrounds.frx":7984
Style = 1 'Graphical
TabIndex = 186
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 151
Left = 120
Picture = "frmBackgrounds.frx":7D9C
Style = 1 'Graphical
TabIndex = 185
Top = 840
Width = 540
End
End
Begin VB.Frame Frame5
Caption = "Zelda 2"
Height = 2175
Left = 120
TabIndex = 171
Top = 240
Width = 3255
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 115
Left = 1320
Picture = "frmBackgrounds.frx":81AB
Style = 1 'Graphical
TabIndex = 183
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 116
Left = 1920
Picture = "frmBackgrounds.frx":8575
Style = 1 'Graphical
TabIndex = 182
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 117
Left = 2520
Picture = "frmBackgrounds.frx":890D
Style = 1 'Graphical
TabIndex = 181
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 118
Left = 1320
Picture = "frmBackgrounds.frx":8CDB
Style = 1 'Graphical
TabIndex = 180
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 119
Left = 720
Picture = "frmBackgrounds.frx":90E0
Style = 1 'Graphical
TabIndex = 179
Top = 840
Width = 540
End
Begin VB.OptionButton Background
Height = 540
Index = 120
Left = 720
Picture = "frmBackgrounds.frx":94E3
Style = 1 'Graphical
TabIndex = 178
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 121
Left = 720
Picture = "frmBackgrounds.frx":98ED
Style = 1 'Graphical
TabIndex = 177
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 122
Left = 120
Picture = "frmBackgrounds.frx":9D3B
Style = 1 'Graphical
TabIndex = 176
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 123
Left = 120
Picture = "frmBackgrounds.frx":A158
Style = 1 'Graphical
TabIndex = 175
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 124
Left = 120
Picture = "frmBackgrounds.frx":A55B
Style = 1 'Graphical
TabIndex = 174
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 125
Left = 2520
Picture = "frmBackgrounds.frx":A977
Style = 1 'Graphical
TabIndex = 173
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 126
Left = 1920
Picture = "frmBackgrounds.frx":AD54
Style = 1 'Graphical
TabIndex = 172
Top = 840
Width = 540
End
End
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 98
Left = 17280
Picture = "frmBackgrounds.frx":B243
Style = 1 'Graphical
TabIndex = 10
Top = 480
Visible = 0 'False
Width = 540
End
Begin VB.PictureBox FocusNinja
Height = 375
Left = 19080
ScaleHeight = 315
ScaleWidth = 315
TabIndex = 0
Top = 840
Width = 375
End
Begin VB.Frame Game
Caption = "Super Mario Bros. 2"
Height = 1935
Index = 3
Left = 1920
TabIndex = 9
Top = 10560
Visible = 0 'False
Width = 6015
Begin VB.Frame Frame
Caption = "Water"
Height = 1575
Index = 22
Left = 4080
TabIndex = 192
Top = 240
Width = 855
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 159
Left = 120
Picture = "frmBackgrounds.frx":B5FE
Style = 1 'Graphical
TabIndex = 194
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 158
Left = 120
Picture = "frmBackgrounds.frx":B724
Style = 1 'Graphical
TabIndex = 193
Top = 840
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Misc."
Height = 1575
Index = 19
Left = 120
TabIndex = 106
Top = 240
Width = 3855
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 148
Left = 2520
Picture = "frmBackgrounds.frx":BB48
Style = 1 'Graphical
TabIndex = 197
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 149
Left = 3120
Picture = "frmBackgrounds.frx":BF6C
Style = 1 'Graphical
TabIndex = 196
Top = 840
Value = -1 'True
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 150
Left = 2520
Picture = "frmBackgrounds.frx":C3A4
Style = 1 'Graphical
TabIndex = 195
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 112
Left = 1320
Picture = "frmBackgrounds.frx":C7D5
Style = 1 'Graphical
TabIndex = 143
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 111
Left = 720
Picture = "frmBackgrounds.frx":CBF9
Style = 1 'Graphical
TabIndex = 142
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 113
Left = 1920
Picture = "frmBackgrounds.frx":D039
Style = 1 'Graphical
TabIndex = 141
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 110
Left = 1920
Picture = "frmBackgrounds.frx":D466
Style = 1 'Graphical
TabIndex = 140
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 108
Left = 1320
Picture = "frmBackgrounds.frx":D8C7
Style = 1 'Graphical
TabIndex = 139
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 109
Left = 720
Picture = "frmBackgrounds.frx":DD19
Style = 1 'Graphical
TabIndex = 138
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 63
Left = 120
Picture = "frmBackgrounds.frx":E16B
Style = 1 'Graphical
TabIndex = 108
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 62
Left = 120
Picture = "frmBackgrounds.frx":E544
Style = 1 'Graphical
TabIndex = 107
Top = 240
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Doors"
Height = 1575
Index = 20
Left = 5040
TabIndex = 103
Top = 240
Width = 855
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 87
Left = 120
Picture = "frmBackgrounds.frx":E996
Style = 1 'Graphical
TabIndex = 105
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 88
Left = 120
Picture = "frmBackgrounds.frx":ED66
Style = 1 'Graphical
TabIndex = 104
Top = 840
Width = 540
End
End
End
Begin VB.Frame Game
Caption = "Super Mario World"
Height = 3375
Index = 2
Left = 120
TabIndex = 7
Top = 3960
Visible = 0 'False
Width = 13095
Begin VB.Frame Frame4
Caption = "Fence"
Height = 2055
Left = 9720
TabIndex = 213
Top = 240
Width = 3255
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 186
Left = 1320
Picture = "frmBackgrounds.frx":F16F
Style = 1 'Graphical
TabIndex = 226
Top = 1440
Value = -1 'True
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 185
Left = 720
Picture = "frmBackgrounds.frx":F57A
Style = 1 'Graphical
TabIndex = 225
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 184
Left = 120
Picture = "frmBackgrounds.frx":F953
Style = 1 'Graphical
TabIndex = 224
Top = 1440
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 183
Left = 1320
Picture = "frmBackgrounds.frx":FD60
Style = 1 'Graphical
TabIndex = 223
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 182
Left = 720
Picture = "frmBackgrounds.frx":1015D
Style = 1 'Graphical
TabIndex = 222
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 181
Left = 120
Picture = "frmBackgrounds.frx":1052C
Style = 1 'Graphical
TabIndex = 221
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 180
Left = 1320
Picture = "frmBackgrounds.frx":1092D
Style = 1 'Graphical
TabIndex = 220
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 179
Left = 720
Picture = "frmBackgrounds.frx":10D3D
Style = 1 'Graphical
TabIndex = 219
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 178
Left = 120
Picture = "frmBackgrounds.frx":11117
Style = 1 'Graphical
TabIndex = 218
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 177
Left = 2520
Picture = "frmBackgrounds.frx":11523
Style = 1 'Graphical
TabIndex = 217
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 176
Left = 1920
Picture = "frmBackgrounds.frx":1190E
Style = 1 'Graphical
TabIndex = 216
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 175
Left = 2520
Picture = "frmBackgrounds.frx":11CF8
Style = 1 'Graphical
TabIndex = 215
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 174
Left = 1920
Picture = "frmBackgrounds.frx":120E2
Style = 1 'Graphical
TabIndex = 214
Top = 240
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Water"
Height = 855
Index = 23
Left = 6480
TabIndex = 204
Top = 2400
Width = 2055
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 173
Left = 1320
Picture = "frmBackgrounds.frx":124CC
Style = 1 'Graphical
TabIndex = 212
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 167
Left = 720
Picture = "frmBackgrounds.frx":12957
Style = 1 'Graphical
TabIndex = 206
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 166
Left = 120
Picture = "frmBackgrounds.frx":12CBB
Style = 1 'Graphical
TabIndex = 205
Top = 240
Width = 540
End
End
Begin VB.Frame Frame3
Caption = "Checkpoint / Exit"
Height = 1455
Left = 6480
TabIndex = 155
Top = 960
Width = 3135
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 145
Left = 2520
Picture = "frmBackgrounds.frx":13054
Style = 1 'Graphical
TabIndex = 167
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 144
Left = 1920
Picture = "frmBackgrounds.frx":13470
Style = 1 'Graphical
TabIndex = 166
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 143
Left = 2520
Picture = "frmBackgrounds.frx":1388C
Style = 1 'Graphical
TabIndex = 165
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 142
Left = 1920
Picture = "frmBackgrounds.frx":13CA1
Style = 1 'Graphical
TabIndex = 164
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 138
Left = 720
Picture = "frmBackgrounds.frx":140CB
Style = 1 'Graphical
TabIndex = 160
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 137
Left = 720
Picture = "frmBackgrounds.frx":144A7
Style = 1 'Graphical
TabIndex = 159
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 136
Left = 120
Picture = "frmBackgrounds.frx":1488F
Style = 1 'Graphical
TabIndex = 158
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 135
Left = 120
Picture = "frmBackgrounds.frx":14C93
Style = 1 'Graphical
TabIndex = 157
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 134
Left = 1320
Picture = "frmBackgrounds.frx":150A7
Style = 1 'Graphical
TabIndex = 156
Top = 840
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Ghost House"
Height = 1455
Index = 16
Left = 2880
TabIndex = 95
Top = 120
Width = 3255
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 146
Left = 1920
Picture = "frmBackgrounds.frx":154B5
Style = 1 'Graphical
TabIndex = 168
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 140
Left = 2520
Picture = "frmBackgrounds.frx":15998
Style = 1 'Graphical
TabIndex = 162
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 139
Left = 2520
Picture = "frmBackgrounds.frx":15E2E
Style = 1 'Graphical
TabIndex = 161
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 43
Left = 1920
Picture = "frmBackgrounds.frx":16313
Style = 1 'Graphical
TabIndex = 102
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 44
Left = 1320
Picture = "frmBackgrounds.frx":16754
Style = 1 'Graphical
TabIndex = 101
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 47
Left = 120
Picture = "frmBackgrounds.frx":16B9E
Style = 1 'Graphical
TabIndex = 100
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 48
Left = 720
Picture = "frmBackgrounds.frx":17154
Style = 1 'Graphical
TabIndex = 99
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 49
Left = 120
Picture = "frmBackgrounds.frx":17642
Style = 1 'Graphical
TabIndex = 98
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 50
Left = 720
Picture = "frmBackgrounds.frx":179C1
Style = 1 'Graphical
TabIndex = 97
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 51
Left = 1320
Picture = "frmBackgrounds.frx":17D5E
Style = 1 'Graphical
TabIndex = 96
Top = 240
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Misc"
Height = 855
Index = 13
Left = 2880
TabIndex = 93
Top = 2400
Width = 2055
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 133
Left = 1320
Picture = "frmBackgrounds.frx":180DB
Style = 1 'Graphical
TabIndex = 154
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 132
Left = 720
Picture = "frmBackgrounds.frx":18472
Style = 1 'Graphical
TabIndex = 153
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 29
Left = 120
Picture = "frmBackgrounds.frx":1881F
Style = 1 'Graphical
TabIndex = 94
Top = 240
Width = 540
End
End
Begin VB.Frame Frame
Caption = "Trees"
Height = 1575
Index = 17
Left = 120
TabIndex = 84
Top = 1320
Width = 2655
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 59
Left = 1320
Picture = "frmBackgrounds.frx":18C14
Style = 1 'Graphical
TabIndex = 92
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 52
Left = 720
Picture = "frmBackgrounds.frx":18F9F
Style = 1 'Graphical
TabIndex = 91
Top = 840
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&
Height = 540
Index = 53
Left = 720
Picture = "frmBackgrounds.frx":19434
Style = 1 'Graphical
TabIndex = 90
Top = 240
Width = 540
End
Begin VB.OptionButton Background
BackColor = &H00000000&