-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfrmLister.frm
4843 lines (4263 loc) · 172 KB
/
frmLister.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
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form frmLister
Caption = "Viewer:"
ClientHeight = 8040
ClientLeft = 60
ClientTop = 450
ClientWidth = 12885
Icon = "frmLister.frx":0000
LinkTopic = "Form1"
OLEDropMode = 1 'Manual
ScaleHeight = 8040
ScaleWidth = 12885
StartUpPosition = 3 'Windows Default
Begin VB.Frame frSEQ
Caption = "SEQ Viewer"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1605
Left = 5220
TabIndex = 8
Top = 6900
Visible = 0 'False
Width = 4740
Begin VB.CheckBox cbIgnoreLF
Caption = "&Ignore LF"
Height = 195
Left = 2580
TabIndex = 150
Top = 300
Value = 1 'Checked
Width = 2235
End
Begin VB.CheckBox cbSeqFont
Caption = "&Use 'SEQ Viewer' C64 Font"
Height = 195
Left = 180
TabIndex = 10
Top = 300
Width = 2235
End
Begin VB.ListBox lstSEQ
BackColor = &H00008080&
BeginProperty Font
Name = "Courier"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 840
Left = 120
TabIndex = 9
Top = 585
Width = 2385
End
End
Begin VB.Frame frFont
Caption = "Character Set Viewer"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 4710
Left = 960
TabIndex = 29
Top = 1680
Visible = 0 'False
Width = 11685
Begin VB.CheckBox cbFCols
Caption = "32"
Height = 255
Left = 6000
TabIndex = 57
Top = 270
Width = 615
End
Begin VB.TextBox txtCSkip
Height = 285
Left = 8550
TabIndex = 55
Text = "0"
ToolTipText = "Set number of bytes to skip (decimal)"
Top = 275
Width = 1095
End
Begin VB.CommandButton cmdSaveCSet
Caption = "Save BMP..."
Height = 375
Left = 120
TabIndex = 47
ToolTipText = "Save as BMP file"
Top = 4200
Width = 1275
End
Begin VB.CommandButton cmdZoom
Caption = "3x"
Height = 315
Index = 2
Left = 2760
TabIndex = 43
Top = 240
Width = 555
End
Begin VB.CommandButton cmdZoom
Caption = "2x"
Height = 315
Index = 1
Left = 2160
TabIndex = 42
Top = 240
Width = 555
End
Begin VB.CommandButton cmdZoom
Caption = "1x"
Height = 315
Index = 0
Left = 1560
TabIndex = 41
Top = 240
Width = 555
End
Begin VB.OptionButton optChrH
Caption = "8x8"
Height = 210
Index = 0
Left = 120
TabIndex = 37
Top = 3720
Value = -1 'True
Width = 705
End
Begin VB.OptionButton optChrH
Caption = "8x16"
Height = 210
Index = 1
Left = 120
TabIndex = 36
Top = 3960
Width = 765
End
Begin VB.CheckBox cbBorder
Caption = "Border"
Height = 255
Left = 6660
TabIndex = 35
Top = 270
Width = 885
End
Begin VB.ComboBox cboScheme
Height = 315
ItemData = "frmLister.frx":0442
Left = 3480
List = "frmLister.frx":045B
Style = 2 'Dropdown List
TabIndex = 34
Top = 240
Width = 1575
End
Begin VB.PictureBox picV
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
ForeColor = &H00FFFFFF&
Height = 480
Left = 1560
ScaleHeight = 32
ScaleMode = 3 'Pixel
ScaleWidth = 31
TabIndex = 33
Top = 600
Width = 465
End
Begin VB.PictureBox picChr
AutoRedraw = -1 'True
BackColor = &H00C00000&
ForeColor = &H00FFFFFF&
Height = 2565
Left = 120
ScaleHeight = 167
ScaleMode = 3 'Pixel
ScaleWidth = 81
TabIndex = 32
Top = 1080
Width = 1275
End
Begin VB.CommandButton cmdCSPrev
Caption = "<"
Height = 255
Left = 660
TabIndex = 31
ToolTipText = "Previous character"
Top = 240
Width = 330
End
Begin VB.CommandButton cmdCSNxt
Caption = ">"
Height = 255
Left = 990
TabIndex = 30
ToolTipText = "Next character"
Top = 240
Width = 360
End
Begin VB.Label lblChrX
BackColor = &H00FFFF00&
Caption = "000"
Height = 465
Left = 120
TabIndex = 149
Top = 570
Width = 1275
End
Begin VB.Label lblEndRange
AutoSize = -1 'True
Caption = "-"
Height = 195
Left = 9780
TabIndex = 56
Top = 300
Width = 45
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "Skip Bytes:"
Height = 195
Left = 7710
TabIndex = 54
Top = 300
Width = 795
End
Begin VB.Label lblFore
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 1 'Fixed Single
ForeColor = &H80000008&
Height = 315
Left = 5280
TabIndex = 40
Top = 240
Width = 315
End
Begin VB.Label lblBg
Appearance = 0 'Flat
BackColor = &H00FF0000&
BorderStyle = 1 'Fixed Single
ForeColor = &H80000008&
Height = 315
Left = 5580
TabIndex = 39
Top = 240
Width = 315
End
Begin VB.Label lblChrNum
Alignment = 2 'Center
BackColor = &H00FFFF00&
Caption = "000"
Height = 225
Left = 120
TabIndex = 38
Top = 240
Width = 495
End
End
Begin VB.Frame frBasic
Caption = "BASIC Lister"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3480
Left = 4080
TabIndex = 2
Top = 3900
Visible = 0 'False
Width = 8520
Begin VB.ListBox lstBAS
BackColor = &H00C00000&
BeginProperty Font
Name = "Courier"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8383&
Height = 1230
Left = 105
TabIndex = 3
Top = 930
Width = 7305
End
Begin VB.Frame frBOpts
BorderStyle = 0 'None
Height = 735
Left = 330
TabIndex = 135
Top = 180
Width = 7275
Begin VB.ComboBox cboMode
Height = 315
ItemData = "frmLister.frx":0499
Left = 750
List = "frmLister.frx":04AF
Style = 2 'Dropdown List
TabIndex = 144
Top = 0
Width = 1860
End
Begin VB.CommandButton cmdCpyClip
Caption = "To &Clipboard"
Height = 315
Left = 5940
TabIndex = 143
ToolTipText = "Export current view text to clipboard"
Top = 0
Width = 1215
End
Begin VB.CheckBox cbRev
Caption = "&Reverse Text"
Height = 240
Left = 2820
TabIndex = 142
ToolTipText = "Reverse display of Text"
Top = 0
Width = 1425
End
Begin VB.CheckBox cbUseFont
Caption = "Use CBM &Font"
Height = 240
Left = 2820
TabIndex = 141
ToolTipText = "Use special C64 Font"
Top = 240
Width = 1425
End
Begin VB.CommandButton cmdSave
Caption = "E&xport"
Height = 315
Left = 5925
TabIndex = 140
ToolTipText = "Save current view text to file"
Top = 360
Width = 1230
End
Begin VB.CheckBox cbExp
Caption = "Expand &Special ("
Height = 240
Left = 2820
TabIndex = 139
ToolTipText = "Expand special characters (ie {RVS} )"
Top = 480
Value = 1 'Checked
Width = 1530
End
Begin VB.CheckBox cbOneLine
Caption = "&Break Multi"
Height = 240
Left = 4350
TabIndex = 138
ToolTipText = "Break multi-statement lines (list one statement per line)"
Top = -15
Width = 1560
End
Begin VB.CheckBox cbPad
Caption = "Pad &Tokens"
Height = 240
Left = 4350
TabIndex = 137
ToolTipText = "Append SPACE to tokens"
Top = 225
Width = 1305
End
Begin VB.CheckBox cbUC
Caption = "UCase)"
Height = 240
Left = 4350
TabIndex = 136
ToolTipText = "Special characters printed UpperCase"
Top = 480
Value = 1 'Checked
Width = 900
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "BASIC:"
Height = 195
Left = 150
TabIndex = 148
Top = 60
Width = 510
End
Begin VB.Label lblGuess
BackColor = &H8000000D&
BorderStyle = 1 'Fixed Single
Caption = "-"
ForeColor = &H8000000E&
Height = 300
Left = 1425
TabIndex = 147
ToolTipText = "Computer model"
Top = 345
Width = 1155
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "Load@:"
Height = 195
Left = 120
TabIndex = 146
Top = 405
Width = 570
End
Begin VB.Label lblLoadAdr
BorderStyle = 1 'Fixed Single
Caption = "-"
Height = 285
Left = 750
TabIndex = 145
Top = 345
Width = 600
End
End
Begin VB.Label lblBView
Caption = "<<"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 165
Left = 60
TabIndex = 134
ToolTipText = "Toggle Options pane"
Top = 180
Width = 255
End
End
Begin VB.Frame frBMP
Caption = "Bitmap Viewer"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3825
Left = 8610
TabIndex = 18
Top = 4200
Visible = 0 'False
Width = 3555
Begin VB.CommandButton cmdBSave
Caption = "Save..."
Height = 315
Left = 120
TabIndex = 22
Top = 300
Width = 975
End
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H00FFFFFF&
BorderStyle = 0 'None
FillStyle = 0 'Solid
ForeColor = &H00000000&
Height = 3000
Left = 120
ScaleHeight = 200
ScaleMode = 3 'Pixel
ScaleWidth = 213
TabIndex = 19
Top = 720
Width = 3200
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "Comment:"
Height = 195
Left = 1260
TabIndex = 24
Top = 480
Width = 705
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "Format:"
Height = 195
Left = 1260
TabIndex = 23
Top = 240
Width = 525
End
Begin VB.Label lblBType
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00C0C0C0&
BackStyle = 0 'Transparent
Caption = "-"
ForeColor = &H00000000&
Height = 195
Left = 2040
TabIndex = 21
Top = 240
Width = 45
End
Begin VB.Label lblBComment
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00C0C0C0&
BackStyle = 0 'Transparent
Caption = "-"
ForeColor = &H00000000&
Height = 195
Left = 2040
TabIndex = 20
Top = 480
Width = 45
End
End
Begin VB.Frame frBIN
Caption = "Binary Viewer"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1545
Left = 5850
TabIndex = 6
Top = 1350
Visible = 0 'False
Width = 6390
Begin VB.CheckBox cbWide
Caption = "Wide"
Height = 195
Left = 2010
TabIndex = 133
ToolTipText = "File includes Load Address at start"
Top = 240
Value = 1 'Checked
Width = 735
End
Begin VB.CheckBox cb7bit
Caption = "7-bit View"
Height = 195
Left = 4410
TabIndex = 46
ToolTipText = "Enable 7-bit View"
Top = 240
Width = 1035
End
Begin VB.CheckBox cbLA2
Caption = "&Load Address in File"
Height = 195
Left = 120
TabIndex = 25
ToolTipText = "File includes Load Address at start"
Top = 240
Value = 1 'Checked
Width = 1755
End
Begin VB.CheckBox cbShowP
Caption = "Show Printable"
Height = 195
Left = 2880
TabIndex = 16
Top = 240
Value = 1 'Checked
Width = 1635
End
Begin VB.ListBox lstBIN
BackColor = &H00000000&
BeginProperty Font
Name = "Courier"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 645
Left = 120
TabIndex = 7
Top = 540
Width = 4425
End
End
Begin VB.Frame frBlank
Height = 855
Left = 12750
TabIndex = 49
Top = 1500
Visible = 0 'False
Width = 2655
Begin VB.Label Label9
AutoSize = -1 'True
Caption = "Select Viewer with button above..."
Height = 195
Left = 120
TabIndex = 50
Top = 360
Width = 2430
End
End
Begin VB.Frame frML
Caption = "Machine Language Disassembler"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 9345
Left = 30
TabIndex = 4
Top = 540
Visible = 0 'False
Width = 12900
Begin VB.CommandButton cmdAddComment
Caption = "*C*"
Height = 315
Index = 4
Left = 9300
TabIndex = 122
ToolTipText = "Add Comment with * Separator"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdAddComment
Caption = "***"
Height = 315
HelpContextID = 7
Index = 7
Left = 10650
TabIndex = 121
ToolTipText = "Add * Separator"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdDTAdd
Caption = "W"
Height = 315
Index = 5
Left = 6960
TabIndex = 120
ToolTipText = "Make Word Block"
Top = 210
Width = 375
End
Begin VB.CommandButton cmdAddLabel
Caption = "Label"
Height = 315
Left = 4260
TabIndex = 119
ToolTipText = "Add Label"
Top = 210
Width = 585
End
Begin VB.CommandButton cmdAddComment
Caption = "==="
Height = 315
Index = 6
Left = 10200
TabIndex = 118
ToolTipText = "Add = Separator"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdAddComment
Caption = "----"
Height = 315
Index = 5
Left = 9750
TabIndex = 117
ToolTipText = "Add - Separator"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdAddComment
Caption = "=C="
Height = 315
Index = 3
Left = 8850
TabIndex = 116
ToolTipText = "Add Comment with = Separator"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdAddComment
Caption = "--C--"
Height = 315
Index = 2
Left = 8400
TabIndex = 115
ToolTipText = "Add Comment with - Separator"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdAddComment
Caption = "C"
Height = 315
Index = 1
Left = 7950
TabIndex = 114
ToolTipText = "Add Standalone Comment"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdAddComment
Caption = ";C"
Height = 315
Index = 0
Left = 7500
TabIndex = 113
ToolTipText = "Add Inline Comment"
Top = 210
Width = 435
End
Begin VB.CommandButton cmdDTAdd
Caption = "V"
Height = 315
Index = 4
Left = 6570
TabIndex = 112
ToolTipText = "Make Vector Block"
Top = 210
Width = 375
End
Begin VB.CommandButton cmdDTAdd
Caption = "R"
Height = 315
Index = 3
Left = 6180
TabIndex = 111
ToolTipText = "Make RTS vector block"
Top = 210
Width = 375
End
Begin VB.CommandButton cmdDTAdd
Caption = "T"
Height = 315
Index = 2
Left = 5790
TabIndex = 110
ToolTipText = "MakeText Block"
Top = 210
Width = 375
End
Begin VB.CommandButton cmdDTAdd
Caption = "H"
Height = 315
Index = 1
Left = 5400
TabIndex = 109
ToolTipText = "Make Hex Block"
Top = 210
Width = 375
End
Begin VB.CommandButton cmdDTAdd
Caption = "D"
Height = 315
Index = 0
Left = 5010
TabIndex = 108
ToolTipText = "Make Dec Byte Block"
Top = 210
Width = 375
End
Begin VB.CommandButton cmdFindAll
Caption = "Find All"
Height = 315
Left = 2790
TabIndex = 59
ToolTipText = "Find all occurences"
Top = 210
Width = 705
End
Begin VB.CommandButton cmdNext
Caption = "Next"
Height = 315
Left = 3510
TabIndex = 45
ToolTipText = "Jump to Next"
Top = 210
Width = 495
End
Begin VB.CommandButton cmdFind
Caption = "Find"
Height = 315
Left = 2220
TabIndex = 44
ToolTipText = "Find Text"
Top = 210
Width = 555
End
Begin VB.CommandButton cmdRefresh
Caption = "Refresh"
Height = 315
Left = 690
TabIndex = 28
Top = 210
Width = 705
End
Begin VB.ListBox lstML
BeginProperty Font
Name = "Courier New"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 3990
MultiSelect = 2 'Extended
TabIndex = 5
Top = 660
Width = 1275
End
Begin VB.Frame frTView
Height = 8625
Left = 90
TabIndex = 60
Top = 570
Width = 3825
Begin VB.Frame frMLSettings
Height = 6855
Left = 60
TabIndex = 74
Top = 1440
Width = 3615
Begin VB.CommandButton cmdImport
Caption = "Import"
Height = 345
Left = 2040
TabIndex = 128
ToolTipText = "Import Symbols"
Top = 4890
Width = 1455
End
Begin VB.CheckBox cbIncSym
Caption = "Include Symbol comments"
Height = 375
Left = 150
TabIndex = 107
Top = 4110
Value = 1 'Checked
Width = 3255
End
Begin VB.ComboBox cboCPUFile
BackColor = &H00FFFFFF&
CausesValidation= 0 'False
ForeColor = &H00000000&
Height = 315
ItemData = "frmLister.frx":0520
Left = 2220
List = "frmLister.frx":0522
Style = 2 'Dropdown List
TabIndex = 106
Top = 1740
Visible = 0 'False
Width = 1305
End
Begin VB.ComboBox cboCPU
BackColor = &H00000080&
CausesValidation= 0 'False
ForeColor = &H00FFFFFF&
Height = 315
ItemData = "frmLister.frx":0524
Left = 810
List = "frmLister.frx":0526
Style = 2 'Dropdown List
TabIndex = 104
Top = 1740
Width = 2715
End
Begin VB.TextBox txtDivLen
BackColor = &H00000080&
ForeColor = &H00FFFFFF&
Height = 315
Left = 1920
MaxLength = 2
TabIndex = 103
Text = "80"
Top = 3060
Width = 345
End
Begin VB.ComboBox cboPlatFile
BackColor = &H00FFFFFF&
CausesValidation= 0 'False
ForeColor = &H00000000&
Height = 315
ItemData = "frmLister.frx":0528
Left = 2220
List = "frmLister.frx":052A
Style = 2 'Dropdown List
TabIndex = 101
Top = 1380
Visible = 0 'False
Width = 1305
End
Begin VB.ComboBox cboPlatform
BackColor = &H00000080&
CausesValidation= 0 'False
ForeColor = &H00FFFFFF&
Height = 315
ItemData = "frmLister.frx":052C
Left = 810
List = "frmLister.frx":052E
Style = 2 'Dropdown List
TabIndex = 100
Top = 1410
Width = 2715
End
Begin VB.CommandButton cmdMLHelp
Caption = "Help"
Height = 465
Left = 600
TabIndex = 98
ToolTipText = "Display HELP file"
Top = 5400
Width = 2385
End
Begin VB.CheckBox cbLabelBlanks
Caption = "Add blank line before Labels"
Height = 375
Left = 150
TabIndex = 97
Top = 3840
Value = 1 'Checked
Width = 3285
End
Begin VB.ComboBox cboPrefix
BackColor = &H00000080&
CausesValidation= 0 'False
ForeColor = &H00FFFFFF&
Height = 315
ItemData = "frmLister.frx":0530
Left = 1110
List = "frmLister.frx":0532
Style = 2 'Dropdown List
TabIndex = 95
Top = 2730
Width = 2415
End
Begin VB.ComboBox cboTarget
BackColor = &H00000080&
CausesValidation= 0 'False
ForeColor = &H00FFFFFF&
Height = 315
ItemData = "frmLister.frx":0534
Left = 810
List = "frmLister.frx":0541
Style = 2 'Dropdown List
TabIndex = 93
Top = 2400
Width = 2715
End
Begin VB.CommandButton cmdSaveASM