Home » Archimedes archive » Acorn User » AU 1996-06.adf » Regulars » StarInfo/Fletcher/!TextScanC/!Help
StarInfo/Fletcher/!TextScanC/!Help
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Archimedes archive » Acorn User » AU 1996-06.adf » Regulars |
Filename: | StarInfo/Fletcher/!TextScanC/!Help |
Read OK: | ✔ |
File size: | 170A bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
TextScan ======== Version 1.01 (11 Sep 1995) Version 1.01C (14 Nov 1995) NOTE: This is a compressed version of the original program which does not use my JFShared library. The full version can be obtained from the author's web site. Introduction ------------ Have you ever thought �Does one of my sound sample playing programs import microsoft WAV format ?�, or �Which OSLib header file is the definition for Device_S in, and which calls use it ?�, or how about �How many times does the word Desktop occur in text files on my hard disc ?� ? No ? Well, then you don't really need this program. If, however, any of these sounds vaguely familiar, then you could probably benefit from having this program. What it allows you to do is to give it a path to search, and a string to search for (wildcarded) and then just let it run around like a headless chicken looking for that string. Simple ? Usage ----- � Firstly, run the application. Very simple, yes ? � Now, Drag a directory on to the icon bar to indicate where you wish to search, eg the OSLib archive. Alternatively, you could just click on the icon and enter the root path of the hard disc (eg ADFS::Gerph.$). Still easy ? � Enter it the second icon the string you wish to search for. This can include wildcards, for example "Set *$Options" to find all programs which have default options settings (you would need to enable Scan Obey files for this to work, however). The search is case insensitive, and uses a relatively fast search technique which I have encoded directly from the CopyF program (sorry about this, but it is a gorgeous piece of code for checking wildcards). Note that leading and trailing *'s and #'s will be stripped. � Make sure that the Throwback handler is present and its name entered into the icon. See the section later for more informtion. If this is not present, then the messages will be broadcast; this takes a little longer, but means that TextScan need not know who is picking up the messages, and it should work with whichever handler is present. � Now, the hard bit. Click Scan to begin scanning. How it works ------------ Well, I wrote a simple program to scan an area of memory for a wildcarded string in Assembler, and the program simply applies the program to all the files within a particular path. Not much more I can say really. Sorry. Look at the code to see how it works. If you load the Source v1.00 file you can see the code (bar that in the library) for the scan (not available in this release). Configuration ------------- The menu option Configure� allows you to configure the initial state of the application and some of the features which are not settable by the main application. This option uses Config+ (my version). If you don't understand any of the options then you might as well use the !Help application as that is what it is for and as most of my applications support it. If, however, you don't have Config+ available, then you will be presented with a text file to manually alter. The entries are : Program: Do not alter Path: Path to fill in initially Throwback: Application to use for throwback (or blank for broadcast messages) Poll: Numeric value preceded by % giving the number of polls to execute whilst searching. Use +ve integers for a number of multitasks, -ve number to number of finds to do before executing that number of polls, or 0 to disable multitasking entirely. ScanAll: Set to On if all file types whould be scanned. ScanData: Set to On if Data files should be scanned (useful for StrongHelp) ScanObey: Set to On if Obey files should be scanned. Help and message files ---------------------- This application is fully !Help compliant and it is recommended that when getting to grips with it the help should be used if only to give it some purpose! It also supports the use of MessageTrans and therefore translation to another language or changing the messages for the fun of it is much easier than it might have been. Compatibility ------------- This application has been tested on the author's A5000, but due to the lack of friends with Acorns has not been tested on other systems. Due to some features of RO3.1 not being present on RO2, it is unlikely that it will run on these machines (sorry Niall). However, minor modifications may be all that is required. The original version of TextScan should have no problems at all running under RO2. Disclaimer ---------- The author accepts no responsibility for any problems which this application may cause or loss of data resulting in its use. This application is Public Domain. This means that it may be distributed, so long as no charge other than copying costs are charged for it. Contact ------- Any comments, queries, donations or bug reports can be sent to : E-Mail : JRFlet@Essex.ac.uk URL : http://cswww2.essex.ac.uk/users/jrflet Snail Mail : Justin Fletcher �Galadriel� 17b Cromwell Road, Weeting, Brandon, Suffolk. IP27 0QT Uni address : (year 1995/6 only) Eddington Tower, Flat 9/5, University of Essex, Wivenhoe Park, Colchester. CO4 3SQ History ------- Version 1.00 : 08 Sep 1995 First version written Version 1.01 : 11 Sep 1995 Modifications to fix bugs with ArcFS needing more memory than we have. Help file written. Config+ module written to set default features. This full version can be obtained from the above URL, or by EMail to the above address. Version 1.01C: 14 Nov 1995 Identical to 1.01, but Compressed using BasCompress for Acorn User's *Info section. Configure� option now performs *Filer_Run if no ConfigPlus present.
00000000 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | * 00000020 20 20 20 54 65 78 74 53 63 61 6e 0a 20 20 20 20 | TextScan. | 00000030 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000040 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3d | =| 00000050 3d 3d 3d 3d 3d 3d 3d 0a 56 65 72 73 69 6f 6e 20 |=======.Version | 00000060 31 2e 30 31 20 28 31 31 20 53 65 70 20 31 39 39 |1.01 (11 Sep 199| 00000070 35 29 0a 56 65 72 73 69 6f 6e 20 31 2e 30 31 43 |5).Version 1.01C| 00000080 20 28 31 34 20 4e 6f 76 20 31 39 39 35 29 0a 20 | (14 Nov 1995). | 00000090 20 20 20 20 0a 4e 4f 54 45 3a 20 54 68 69 73 20 | .NOTE: This | 000000a0 69 73 20 61 20 63 6f 6d 70 72 65 73 73 65 64 20 |is a compressed | 000000b0 76 65 72 73 69 6f 6e 20 6f 66 20 74 68 65 20 6f |version of the o| 000000c0 72 69 67 69 6e 61 6c 20 70 72 6f 67 72 61 6d 20 |riginal program | 000000d0 77 68 69 63 68 20 64 6f 65 73 20 6e 6f 74 20 75 |which does not u| 000000e0 73 65 0a 6d 79 20 4a 46 53 68 61 72 65 64 20 6c |se.my JFShared l| 000000f0 69 62 72 61 72 79 2e 20 54 68 65 20 66 75 6c 6c |ibrary. The full| 00000100 20 76 65 72 73 69 6f 6e 20 63 61 6e 20 62 65 20 | version can be | 00000110 6f 62 74 61 69 6e 65 64 20 66 72 6f 6d 20 74 68 |obtained from th| 00000120 65 20 61 75 74 68 6f 72 27 73 20 77 65 62 0a 73 |e author's web.s| 00000130 69 74 65 2e 0a 0a 49 6e 74 72 6f 64 75 63 74 69 |ite...Introducti| 00000140 6f 6e 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a |on.------------.| 00000150 48 61 76 65 20 79 6f 75 20 65 76 65 72 20 74 68 |Have you ever th| 00000160 6f 75 67 68 74 20 94 44 6f 65 73 20 6f 6e 65 20 |ought .Does one | 00000170 6f 66 20 6d 79 20 73 6f 75 6e 64 20 73 61 6d 70 |of my sound samp| 00000180 6c 65 20 70 6c 61 79 69 6e 67 20 70 72 6f 67 72 |le playing progr| 00000190 61 6d 73 20 69 6d 70 6f 72 74 0a 6d 69 63 72 6f |ams import.micro| 000001a0 73 6f 66 74 20 57 41 56 20 66 6f 72 6d 61 74 20 |soft WAV format | 000001b0 3f 95 2c 20 6f 72 20 94 57 68 69 63 68 20 4f 53 |?., or .Which OS| 000001c0 4c 69 62 20 68 65 61 64 65 72 20 66 69 6c 65 20 |Lib header file | 000001d0 69 73 20 74 68 65 20 64 65 66 69 6e 69 74 69 6f |is the definitio| 000001e0 6e 20 66 6f 72 0a 44 65 76 69 63 65 5f 53 20 69 |n for.Device_S i| 000001f0 6e 2c 20 61 6e 64 20 77 68 69 63 68 20 63 61 6c |n, and which cal| 00000200 6c 73 20 75 73 65 20 69 74 20 3f 95 2c 20 6f 72 |ls use it ?., or| 00000210 20 68 6f 77 20 61 62 6f 75 74 20 94 48 6f 77 20 | how about .How | 00000220 6d 61 6e 79 20 74 69 6d 65 73 20 64 6f 65 73 20 |many times does | 00000230 74 68 65 0a 77 6f 72 64 20 44 65 73 6b 74 6f 70 |the.word Desktop| 00000240 20 6f 63 63 75 72 20 69 6e 20 74 65 78 74 20 66 | occur in text f| 00000250 69 6c 65 73 20 6f 6e 20 6d 79 20 68 61 72 64 20 |iles on my hard | 00000260 64 69 73 63 20 3f 95 20 3f 0a 0a 4e 6f 20 3f 20 |disc ?. ?..No ? | 00000270 57 65 6c 6c 2c 20 74 68 65 6e 20 79 6f 75 20 64 |Well, then you d| 00000280 6f 6e 27 74 20 72 65 61 6c 6c 79 20 6e 65 65 64 |on't really need| 00000290 20 74 68 69 73 20 70 72 6f 67 72 61 6d 2e 20 49 | this program. I| 000002a0 66 2c 20 68 6f 77 65 76 65 72 2c 20 61 6e 79 20 |f, however, any | 000002b0 6f 66 20 74 68 65 73 65 0a 73 6f 75 6e 64 73 20 |of these.sounds | 000002c0 76 61 67 75 65 6c 79 20 66 61 6d 69 6c 69 61 72 |vaguely familiar| 000002d0 2c 20 74 68 65 6e 20 79 6f 75 20 63 6f 75 6c 64 |, then you could| 000002e0 20 70 72 6f 62 61 62 6c 79 20 62 65 6e 65 66 69 | probably benefi| 000002f0 74 20 66 72 6f 6d 20 68 61 76 69 6e 67 20 74 68 |t from having th| 00000300 69 73 0a 70 72 6f 67 72 61 6d 2e 0a 0a 57 68 61 |is.program...Wha| 00000310 74 20 69 74 20 61 6c 6c 6f 77 73 20 79 6f 75 20 |t it allows you | 00000320 74 6f 20 64 6f 20 69 73 20 74 6f 20 67 69 76 65 |to do is to give| 00000330 20 69 74 20 61 20 70 61 74 68 20 74 6f 20 73 65 | it a path to se| 00000340 61 72 63 68 2c 20 61 6e 64 20 61 20 73 74 72 69 |arch, and a stri| 00000350 6e 67 20 74 6f 0a 73 65 61 72 63 68 20 66 6f 72 |ng to.search for| 00000360 20 28 77 69 6c 64 63 61 72 64 65 64 29 20 61 6e | (wildcarded) an| 00000370 64 20 74 68 65 6e 20 6a 75 73 74 20 6c 65 74 20 |d then just let | 00000380 69 74 20 72 75 6e 20 61 72 6f 75 6e 64 20 6c 69 |it run around li| 00000390 6b 65 20 61 20 68 65 61 64 6c 65 73 73 0a 63 68 |ke a headless.ch| 000003a0 69 63 6b 65 6e 20 6c 6f 6f 6b 69 6e 67 20 66 6f |icken looking fo| 000003b0 72 20 74 68 61 74 20 73 74 72 69 6e 67 2e 20 53 |r that string. S| 000003c0 69 6d 70 6c 65 20 3f 0a 0a 0a 55 73 61 67 65 0a |imple ?...Usage.| 000003d0 2d 2d 2d 2d 2d 0a 8f 20 46 69 72 73 74 6c 79 2c |-----.. Firstly,| 000003e0 20 72 75 6e 20 74 68 65 20 61 70 70 6c 69 63 61 | run the applica| 000003f0 74 69 6f 6e 2e 20 56 65 72 79 20 73 69 6d 70 6c |tion. Very simpl| 00000400 65 2c 20 79 65 73 20 3f 0a 0a 8f 20 4e 6f 77 2c |e, yes ?... Now,| 00000410 20 44 72 61 67 20 61 20 64 69 72 65 63 74 6f 72 | Drag a director| 00000420 79 20 6f 6e 20 74 6f 20 74 68 65 20 69 63 6f 6e |y on to the icon| 00000430 20 62 61 72 20 74 6f 20 69 6e 64 69 63 61 74 65 | bar to indicate| 00000440 20 77 68 65 72 65 20 79 6f 75 20 77 69 73 68 20 | where you wish | 00000450 74 6f 0a 73 65 61 72 63 68 2c 20 65 67 20 74 68 |to.search, eg th| 00000460 65 20 4f 53 4c 69 62 20 61 72 63 68 69 76 65 2e |e OSLib archive.| 00000470 20 41 6c 74 65 72 6e 61 74 69 76 65 6c 79 2c 20 | Alternatively, | 00000480 79 6f 75 20 63 6f 75 6c 64 20 6a 75 73 74 20 63 |you could just c| 00000490 6c 69 63 6b 20 6f 6e 20 74 68 65 20 69 63 6f 6e |lick on the icon| 000004a0 0a 61 6e 64 20 65 6e 74 65 72 20 74 68 65 20 72 |.and enter the r| 000004b0 6f 6f 74 20 70 61 74 68 20 6f 66 20 74 68 65 20 |oot path of the | 000004c0 68 61 72 64 20 64 69 73 63 20 28 65 67 20 41 44 |hard disc (eg AD| 000004d0 46 53 3a 3a 47 65 72 70 68 2e 24 29 2e 20 53 74 |FS::Gerph.$). St| 000004e0 69 6c 6c 20 65 61 73 79 20 3f 0a 0a 8f 20 45 6e |ill easy ?... En| 000004f0 74 65 72 20 69 74 20 74 68 65 20 73 65 63 6f 6e |ter it the secon| 00000500 64 20 69 63 6f 6e 20 74 68 65 20 73 74 72 69 6e |d icon the strin| 00000510 67 20 79 6f 75 20 77 69 73 68 20 74 6f 20 73 65 |g you wish to se| 00000520 61 72 63 68 20 66 6f 72 2e 20 54 68 69 73 20 63 |arch for. This c| 00000530 61 6e 0a 69 6e 63 6c 75 64 65 20 77 69 6c 64 63 |an.include wildc| 00000540 61 72 64 73 2c 20 66 6f 72 20 65 78 61 6d 70 6c |ards, for exampl| 00000550 65 20 22 53 65 74 20 2a 24 4f 70 74 69 6f 6e 73 |e "Set *$Options| 00000560 22 20 74 6f 20 66 69 6e 64 20 61 6c 6c 20 70 72 |" to find all pr| 00000570 6f 67 72 61 6d 73 20 77 68 69 63 68 0a 68 61 76 |ograms which.hav| 00000580 65 20 64 65 66 61 75 6c 74 20 6f 70 74 69 6f 6e |e default option| 00000590 73 20 73 65 74 74 69 6e 67 73 20 28 79 6f 75 20 |s settings (you | 000005a0 77 6f 75 6c 64 20 6e 65 65 64 20 74 6f 20 65 6e |would need to en| 000005b0 61 62 6c 65 20 53 63 61 6e 20 4f 62 65 79 20 66 |able Scan Obey f| 000005c0 69 6c 65 73 20 66 6f 72 0a 74 68 69 73 20 74 6f |iles for.this to| 000005d0 20 77 6f 72 6b 2c 20 68 6f 77 65 76 65 72 29 2e | work, however).| 000005e0 20 54 68 65 20 73 65 61 72 63 68 20 69 73 20 63 | The search is c| 000005f0 61 73 65 20 69 6e 73 65 6e 73 69 74 69 76 65 2c |ase insensitive,| 00000600 20 61 6e 64 20 75 73 65 73 20 61 20 72 65 6c 61 | and uses a rela| 00000610 74 69 76 65 6c 79 0a 66 61 73 74 20 73 65 61 72 |tively.fast sear| 00000620 63 68 20 74 65 63 68 6e 69 71 75 65 20 77 68 69 |ch technique whi| 00000630 63 68 20 49 20 68 61 76 65 20 65 6e 63 6f 64 65 |ch I have encode| 00000640 64 20 64 69 72 65 63 74 6c 79 20 66 72 6f 6d 20 |d directly from | 00000650 74 68 65 20 43 6f 70 79 46 20 70 72 6f 67 72 61 |the CopyF progra| 00000660 6d 0a 28 73 6f 72 72 79 20 61 62 6f 75 74 20 74 |m.(sorry about t| 00000670 68 69 73 2c 20 62 75 74 20 69 74 20 69 73 20 61 |his, but it is a| 00000680 20 67 6f 72 67 65 6f 75 73 20 70 69 65 63 65 20 | gorgeous piece | 00000690 6f 66 20 63 6f 64 65 20 66 6f 72 20 63 68 65 63 |of code for chec| 000006a0 6b 69 6e 67 0a 77 69 6c 64 63 61 72 64 73 29 2e |king.wildcards).| 000006b0 20 4e 6f 74 65 20 74 68 61 74 20 6c 65 61 64 69 | Note that leadi| 000006c0 6e 67 20 61 6e 64 20 74 72 61 69 6c 69 6e 67 20 |ng and trailing | 000006d0 2a 27 73 20 61 6e 64 20 23 27 73 20 77 69 6c 6c |*'s and #'s will| 000006e0 20 62 65 20 73 74 72 69 70 70 65 64 2e 0a 0a 8f | be stripped....| 000006f0 20 4d 61 6b 65 20 73 75 72 65 20 74 68 61 74 20 | Make sure that | 00000700 74 68 65 20 54 68 72 6f 77 62 61 63 6b 20 68 61 |the Throwback ha| 00000710 6e 64 6c 65 72 20 69 73 20 70 72 65 73 65 6e 74 |ndler is present| 00000720 20 61 6e 64 20 69 74 73 20 6e 61 6d 65 20 65 6e | and its name en| 00000730 74 65 72 65 64 20 69 6e 74 6f 0a 74 68 65 20 69 |tered into.the i| 00000740 63 6f 6e 2e 20 53 65 65 20 74 68 65 20 73 65 63 |con. See the sec| 00000750 74 69 6f 6e 20 6c 61 74 65 72 20 66 6f 72 20 6d |tion later for m| 00000760 6f 72 65 20 69 6e 66 6f 72 6d 74 69 6f 6e 2e 20 |ore informtion. | 00000770 49 66 20 74 68 69 73 20 69 73 20 6e 6f 74 20 70 |If this is not p| 00000780 72 65 73 65 6e 74 2c 0a 74 68 65 6e 20 74 68 65 |resent,.then the| 00000790 20 6d 65 73 73 61 67 65 73 20 77 69 6c 6c 20 62 | messages will b| 000007a0 65 20 62 72 6f 61 64 63 61 73 74 3b 20 74 68 69 |e broadcast; thi| 000007b0 73 20 74 61 6b 65 73 20 61 20 6c 69 74 74 6c 65 |s takes a little| 000007c0 20 6c 6f 6e 67 65 72 2c 20 62 75 74 20 6d 65 61 | longer, but mea| 000007d0 6e 73 0a 74 68 61 74 20 54 65 78 74 53 63 61 6e |ns.that TextScan| 000007e0 20 6e 65 65 64 20 6e 6f 74 20 6b 6e 6f 77 20 77 | need not know w| 000007f0 68 6f 20 69 73 20 70 69 63 6b 69 6e 67 20 75 70 |ho is picking up| 00000800 20 74 68 65 20 6d 65 73 73 61 67 65 73 2c 20 61 | the messages, a| 00000810 6e 64 20 69 74 20 73 68 6f 75 6c 64 0a 77 6f 72 |nd it should.wor| 00000820 6b 20 77 69 74 68 20 77 68 69 63 68 65 76 65 72 |k with whichever| 00000830 20 68 61 6e 64 6c 65 72 20 69 73 20 70 72 65 73 | handler is pres| 00000840 65 6e 74 2e 0a 0a 8f 20 4e 6f 77 2c 20 74 68 65 |ent.... Now, the| 00000850 20 68 61 72 64 20 62 69 74 2e 20 43 6c 69 63 6b | hard bit. Click| 00000860 20 53 63 61 6e 20 74 6f 20 62 65 67 69 6e 20 73 | Scan to begin s| 00000870 63 61 6e 6e 69 6e 67 2e 0a 0a 20 20 20 20 0a 48 |canning... .H| 00000880 6f 77 20 69 74 20 77 6f 72 6b 73 0a 2d 2d 2d 2d |ow it works.----| 00000890 2d 2d 2d 2d 2d 2d 2d 2d 0a 57 65 6c 6c 2c 20 49 |--------.Well, I| 000008a0 20 77 72 6f 74 65 20 61 20 73 69 6d 70 6c 65 20 | wrote a simple | 000008b0 70 72 6f 67 72 61 6d 20 74 6f 20 73 63 61 6e 20 |program to scan | 000008c0 61 6e 20 61 72 65 61 20 6f 66 20 6d 65 6d 6f 72 |an area of memor| 000008d0 79 20 66 6f 72 20 61 20 77 69 6c 64 63 61 72 64 |y for a wildcard| 000008e0 65 64 0a 73 74 72 69 6e 67 20 69 6e 20 41 73 73 |ed.string in Ass| 000008f0 65 6d 62 6c 65 72 2c 20 61 6e 64 20 74 68 65 20 |embler, and the | 00000900 70 72 6f 67 72 61 6d 20 73 69 6d 70 6c 79 20 61 |program simply a| 00000910 70 70 6c 69 65 73 20 74 68 65 20 70 72 6f 67 72 |pplies the progr| 00000920 61 6d 20 74 6f 20 61 6c 6c 20 74 68 65 0a 66 69 |am to all the.fi| 00000930 6c 65 73 20 77 69 74 68 69 6e 20 61 20 70 61 72 |les within a par| 00000940 74 69 63 75 6c 61 72 20 70 61 74 68 2e 0a 0a 4e |ticular path...N| 00000950 6f 74 20 6d 75 63 68 20 6d 6f 72 65 20 49 20 63 |ot much more I c| 00000960 61 6e 20 73 61 79 20 72 65 61 6c 6c 79 2e 20 53 |an say really. S| 00000970 6f 72 72 79 2e 20 4c 6f 6f 6b 20 61 74 20 74 68 |orry. Look at th| 00000980 65 20 63 6f 64 65 20 74 6f 20 73 65 65 20 68 6f |e code to see ho| 00000990 77 20 69 74 20 77 6f 72 6b 73 2e 0a 49 66 20 79 |w it works..If y| 000009a0 6f 75 20 6c 6f 61 64 20 74 68 65 20 53 6f 75 72 |ou load the Sour| 000009b0 63 65 20 76 31 2e 30 30 20 66 69 6c 65 20 79 6f |ce v1.00 file yo| 000009c0 75 20 63 61 6e 20 73 65 65 20 74 68 65 20 63 6f |u can see the co| 000009d0 64 65 20 28 62 61 72 20 74 68 61 74 20 69 6e 20 |de (bar that in | 000009e0 74 68 65 0a 6c 69 62 72 61 72 79 29 20 66 6f 72 |the.library) for| 000009f0 20 74 68 65 20 73 63 61 6e 20 28 6e 6f 74 20 61 | the scan (not a| 00000a00 76 61 69 6c 61 62 6c 65 20 69 6e 20 74 68 69 73 |vailable in this| 00000a10 20 72 65 6c 65 61 73 65 29 2e 0a 0a 0a 43 6f 6e | release)....Con| 00000a20 66 69 67 75 72 61 74 69 6f 6e 0a 2d 2d 2d 2d 2d |figuration.-----| 00000a30 2d 2d 2d 2d 2d 2d 2d 2d 0a 54 68 65 20 6d 65 6e |--------.The men| 00000a40 75 20 6f 70 74 69 6f 6e 20 43 6f 6e 66 69 67 75 |u option Configu| 00000a50 72 65 8c 20 61 6c 6c 6f 77 73 20 79 6f 75 20 74 |re. allows you t| 00000a60 6f 20 63 6f 6e 66 69 67 75 72 65 20 74 68 65 20 |o configure the | 00000a70 69 6e 69 74 69 61 6c 20 73 74 61 74 65 20 6f 66 |initial state of| 00000a80 20 74 68 65 0a 61 70 70 6c 69 63 61 74 69 6f 6e | the.application| 00000a90 20 61 6e 64 20 73 6f 6d 65 20 6f 66 20 74 68 65 | and some of the| 00000aa0 20 66 65 61 74 75 72 65 73 20 77 68 69 63 68 20 | features which | 00000ab0 61 72 65 20 6e 6f 74 20 73 65 74 74 61 62 6c 65 |are not settable| 00000ac0 20 62 79 20 74 68 65 20 6d 61 69 6e 0a 61 70 70 | by the main.app| 00000ad0 6c 69 63 61 74 69 6f 6e 2e 20 54 68 69 73 20 6f |lication. This o| 00000ae0 70 74 69 6f 6e 20 75 73 65 73 20 43 6f 6e 66 69 |ption uses Confi| 00000af0 67 2b 20 28 6d 79 20 76 65 72 73 69 6f 6e 29 2e |g+ (my version).| 00000b00 20 49 66 20 79 6f 75 20 64 6f 6e 27 74 20 75 6e | If you don't un| 00000b10 64 65 72 73 74 61 6e 64 0a 61 6e 79 20 6f 66 20 |derstand.any of | 00000b20 74 68 65 20 6f 70 74 69 6f 6e 73 20 74 68 65 6e |the options then| 00000b30 20 79 6f 75 20 6d 69 67 68 74 20 61 73 20 77 65 | you might as we| 00000b40 6c 6c 20 75 73 65 20 74 68 65 20 21 48 65 6c 70 |ll use the !Help| 00000b50 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 61 73 20 | application as | 00000b60 74 68 61 74 0a 69 73 20 77 68 61 74 20 69 74 20 |that.is what it | 00000b70 69 73 20 66 6f 72 20 61 6e 64 20 61 73 20 6d 6f |is for and as mo| 00000b80 73 74 20 6f 66 20 6d 79 20 61 70 70 6c 69 63 61 |st of my applica| 00000b90 74 69 6f 6e 73 20 73 75 70 70 6f 72 74 20 69 74 |tions support it| 00000ba0 2e 0a 0a 49 66 2c 20 68 6f 77 65 76 65 72 2c 20 |...If, however, | 00000bb0 79 6f 75 20 64 6f 6e 27 74 20 68 61 76 65 20 43 |you don't have C| 00000bc0 6f 6e 66 69 67 2b 20 61 76 61 69 6c 61 62 6c 65 |onfig+ available| 00000bd0 2c 20 74 68 65 6e 20 79 6f 75 20 77 69 6c 6c 20 |, then you will | 00000be0 62 65 20 70 72 65 73 65 6e 74 65 64 0a 77 69 74 |be presented.wit| 00000bf0 68 20 61 20 74 65 78 74 20 66 69 6c 65 20 74 6f |h a text file to| 00000c00 20 6d 61 6e 75 61 6c 6c 79 20 61 6c 74 65 72 2e | manually alter.| 00000c10 20 54 68 65 20 65 6e 74 72 69 65 73 20 61 72 65 | The entries are| 00000c20 20 3a 0a 0a 50 72 6f 67 72 61 6d 3a 20 20 20 20 | :..Program: | 00000c30 44 6f 20 6e 6f 74 20 61 6c 74 65 72 0a 50 61 74 |Do not alter.Pat| 00000c40 68 3a 20 20 20 20 20 20 20 50 61 74 68 20 74 6f |h: Path to| 00000c50 20 66 69 6c 6c 20 69 6e 20 69 6e 69 74 69 61 6c | fill in initial| 00000c60 6c 79 0a 54 68 72 6f 77 62 61 63 6b 3a 20 20 41 |ly.Throwback: A| 00000c70 70 70 6c 69 63 61 74 69 6f 6e 20 74 6f 20 75 73 |pplication to us| 00000c80 65 20 66 6f 72 20 74 68 72 6f 77 62 61 63 6b 20 |e for throwback | 00000c90 28 6f 72 20 62 6c 61 6e 6b 20 66 6f 72 20 62 72 |(or blank for br| 00000ca0 6f 61 64 63 61 73 74 20 6d 65 73 73 61 67 65 73 |oadcast messages| 00000cb0 29 0a 50 6f 6c 6c 3a 20 20 20 20 20 20 20 4e 75 |).Poll: Nu| 00000cc0 6d 65 72 69 63 20 76 61 6c 75 65 20 70 72 65 63 |meric value prec| 00000cd0 65 64 65 64 20 62 79 20 25 20 67 69 76 69 6e 67 |eded by % giving| 00000ce0 20 74 68 65 20 6e 75 6d 62 65 72 20 6f 66 20 70 | the number of p| 00000cf0 6f 6c 6c 73 20 74 6f 20 65 78 65 63 75 74 65 0a |olls to execute.| 00000d00 20 20 20 20 20 20 20 20 20 20 20 20 77 68 69 6c | whil| 00000d10 73 74 20 73 65 61 72 63 68 69 6e 67 2e 20 55 73 |st searching. Us| 00000d20 65 20 2b 76 65 20 69 6e 74 65 67 65 72 73 20 66 |e +ve integers f| 00000d30 6f 72 20 61 20 6e 75 6d 62 65 72 20 6f 66 20 6d |or a number of m| 00000d40 75 6c 74 69 74 61 73 6b 73 2c 0a 20 20 20 20 20 |ultitasks,. | 00000d50 20 20 20 20 20 20 20 2d 76 65 20 6e 75 6d 62 65 | -ve numbe| 00000d60 72 20 74 6f 20 6e 75 6d 62 65 72 20 6f 66 20 66 |r to number of f| 00000d70 69 6e 64 73 20 74 6f 20 64 6f 20 62 65 66 6f 72 |inds to do befor| 00000d80 65 20 65 78 65 63 75 74 69 6e 67 20 74 68 61 74 |e executing that| 00000d90 20 6e 75 6d 62 65 72 0a 20 20 20 20 20 20 20 20 | number. | 00000da0 20 20 20 20 6f 66 20 70 6f 6c 6c 73 2c 20 6f 72 | of polls, or| 00000db0 20 30 20 74 6f 20 64 69 73 61 62 6c 65 20 6d 75 | 0 to disable mu| 00000dc0 6c 74 69 74 61 73 6b 69 6e 67 20 65 6e 74 69 72 |ltitasking entir| 00000dd0 65 6c 79 2e 0a 53 63 61 6e 41 6c 6c 3a 20 20 20 |ely..ScanAll: | 00000de0 20 53 65 74 20 74 6f 20 4f 6e 20 69 66 20 61 6c | Set to On if al| 00000df0 6c 20 66 69 6c 65 20 74 79 70 65 73 20 77 68 6f |l file types who| 00000e00 75 6c 64 20 62 65 20 73 63 61 6e 6e 65 64 2e 0a |uld be scanned..| 00000e10 53 63 61 6e 44 61 74 61 3a 20 20 20 53 65 74 20 |ScanData: Set | 00000e20 74 6f 20 4f 6e 20 69 66 20 44 61 74 61 20 66 69 |to On if Data fi| 00000e30 6c 65 73 20 73 68 6f 75 6c 64 20 62 65 20 73 63 |les should be sc| 00000e40 61 6e 6e 65 64 20 28 75 73 65 66 75 6c 20 66 6f |anned (useful fo| 00000e50 72 20 53 74 72 6f 6e 67 48 65 6c 70 29 0a 53 63 |r StrongHelp).Sc| 00000e60 61 6e 4f 62 65 79 3a 20 20 20 53 65 74 20 74 6f |anObey: Set to| 00000e70 20 4f 6e 20 69 66 20 4f 62 65 79 20 66 69 6c 65 | On if Obey file| 00000e80 73 20 73 68 6f 75 6c 64 20 62 65 20 73 63 61 6e |s should be scan| 00000e90 6e 65 64 2e 0a 0a 0a 48 65 6c 70 20 61 6e 64 20 |ned....Help and | 00000ea0 6d 65 73 73 61 67 65 20 66 69 6c 65 73 0a 2d 2d |message files.--| 00000eb0 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------| 00000ec0 2d 2d 2d 2d 0a 54 68 69 73 20 61 70 70 6c 69 63 |----.This applic| 00000ed0 61 74 69 6f 6e 20 69 73 20 66 75 6c 6c 79 20 21 |ation is fully !| 00000ee0 48 65 6c 70 20 63 6f 6d 70 6c 69 61 6e 74 20 61 |Help compliant a| 00000ef0 6e 64 20 69 74 20 69 73 20 72 65 63 6f 6d 6d 65 |nd it is recomme| 00000f00 6e 64 65 64 20 74 68 61 74 20 77 68 65 6e 0a 67 |nded that when.g| 00000f10 65 74 74 69 6e 67 20 74 6f 20 67 72 69 70 73 20 |etting to grips | 00000f20 77 69 74 68 20 69 74 20 74 68 65 20 68 65 6c 70 |with it the help| 00000f30 20 73 68 6f 75 6c 64 20 62 65 20 75 73 65 64 20 | should be used | 00000f40 69 66 20 6f 6e 6c 79 20 74 6f 20 67 69 76 65 20 |if only to give | 00000f50 69 74 20 73 6f 6d 65 0a 70 75 72 70 6f 73 65 21 |it some.purpose!| 00000f60 20 49 74 20 61 6c 73 6f 20 73 75 70 70 6f 72 74 | It also support| 00000f70 73 20 74 68 65 20 75 73 65 20 6f 66 20 4d 65 73 |s the use of Mes| 00000f80 73 61 67 65 54 72 61 6e 73 20 61 6e 64 20 74 68 |sageTrans and th| 00000f90 65 72 65 66 6f 72 65 20 74 72 61 6e 73 6c 61 74 |erefore translat| 00000fa0 69 6f 6e 0a 74 6f 20 61 6e 6f 74 68 65 72 20 6c |ion.to another l| 00000fb0 61 6e 67 75 61 67 65 20 6f 72 20 63 68 61 6e 67 |anguage or chang| 00000fc0 69 6e 67 20 74 68 65 20 6d 65 73 73 61 67 65 73 |ing the messages| 00000fd0 20 66 6f 72 20 74 68 65 20 66 75 6e 20 6f 66 20 | for the fun of | 00000fe0 69 74 20 69 73 20 6d 75 63 68 20 65 61 73 69 65 |it is much easie| 00000ff0 72 0a 74 68 61 6e 20 69 74 20 6d 69 67 68 74 20 |r.than it might | 00001000 68 61 76 65 20 62 65 65 6e 2e 0a 0a 0a 43 6f 6d |have been....Com| 00001010 70 61 74 69 62 69 6c 69 74 79 0a 2d 2d 2d 2d 2d |patibility.-----| 00001020 2d 2d 2d 2d 2d 2d 2d 2d 0a 54 68 69 73 20 61 70 |--------.This ap| 00001030 70 6c 69 63 61 74 69 6f 6e 20 68 61 73 20 62 65 |plication has be| 00001040 65 6e 20 74 65 73 74 65 64 20 6f 6e 20 74 68 65 |en tested on the| 00001050 20 61 75 74 68 6f 72 27 73 20 41 35 30 30 30 2c | author's A5000,| 00001060 20 62 75 74 20 64 75 65 20 74 6f 20 74 68 65 20 | but due to the | 00001070 6c 61 63 6b 0a 6f 66 20 66 72 69 65 6e 64 73 20 |lack.of friends | 00001080 77 69 74 68 20 41 63 6f 72 6e 73 20 68 61 73 20 |with Acorns has | 00001090 6e 6f 74 20 62 65 65 6e 20 74 65 73 74 65 64 20 |not been tested | 000010a0 6f 6e 20 6f 74 68 65 72 20 73 79 73 74 65 6d 73 |on other systems| 000010b0 2e 20 44 75 65 20 74 6f 20 73 6f 6d 65 0a 66 65 |. Due to some.fe| 000010c0 61 74 75 72 65 73 20 6f 66 20 52 4f 33 2e 31 20 |atures of RO3.1 | 000010d0 6e 6f 74 20 62 65 69 6e 67 20 70 72 65 73 65 6e |not being presen| 000010e0 74 20 6f 6e 20 52 4f 32 2c 20 69 74 20 69 73 20 |t on RO2, it is | 000010f0 75 6e 6c 69 6b 65 6c 79 20 74 68 61 74 20 69 74 |unlikely that it| 00001100 20 77 69 6c 6c 20 72 75 6e 0a 6f 6e 20 74 68 65 | will run.on the| 00001110 73 65 20 6d 61 63 68 69 6e 65 73 20 28 73 6f 72 |se machines (sor| 00001120 72 79 20 4e 69 61 6c 6c 29 2e 20 48 6f 77 65 76 |ry Niall). Howev| 00001130 65 72 2c 20 6d 69 6e 6f 72 20 6d 6f 64 69 66 69 |er, minor modifi| 00001140 63 61 74 69 6f 6e 73 20 6d 61 79 20 62 65 20 61 |cations may be a| 00001150 6c 6c 20 74 68 61 74 0a 69 73 20 72 65 71 75 69 |ll that.is requi| 00001160 72 65 64 2e 20 54 68 65 20 6f 72 69 67 69 6e 61 |red. The origina| 00001170 6c 20 76 65 72 73 69 6f 6e 20 6f 66 20 54 65 78 |l version of Tex| 00001180 74 53 63 61 6e 20 73 68 6f 75 6c 64 20 68 61 76 |tScan should hav| 00001190 65 20 6e 6f 20 70 72 6f 62 6c 65 6d 73 20 61 74 |e no problems at| 000011a0 20 61 6c 6c 0a 72 75 6e 6e 69 6e 67 20 75 6e 64 | all.running und| 000011b0 65 72 20 52 4f 32 2e 0a 0a 0a 44 69 73 63 6c 61 |er RO2....Discla| 000011c0 69 6d 65 72 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a |imer.----------.| 000011d0 20 20 54 68 65 20 61 75 74 68 6f 72 20 61 63 63 | The author acc| 000011e0 65 70 74 73 20 6e 6f 20 72 65 73 70 6f 6e 73 69 |epts no responsi| 000011f0 62 69 6c 69 74 79 20 66 6f 72 20 61 6e 79 20 70 |bility for any p| 00001200 72 6f 62 6c 65 6d 73 20 77 68 69 63 68 20 74 68 |roblems which th| 00001210 69 73 0a 61 70 70 6c 69 63 61 74 69 6f 6e 20 6d |is.application m| 00001220 61 79 20 63 61 75 73 65 20 6f 72 20 6c 6f 73 73 |ay cause or loss| 00001230 20 6f 66 20 64 61 74 61 20 72 65 73 75 6c 74 69 | of data resulti| 00001240 6e 67 20 69 6e 20 69 74 73 20 75 73 65 2e 20 54 |ng in its use. T| 00001250 68 69 73 20 61 70 70 6c 69 63 61 74 69 6f 6e 0a |his application.| 00001260 69 73 20 50 75 62 6c 69 63 20 44 6f 6d 61 69 6e |is Public Domain| 00001270 2e 20 54 68 69 73 20 6d 65 61 6e 73 20 74 68 61 |. This means tha| 00001280 74 20 69 74 20 6d 61 79 20 62 65 20 64 69 73 74 |t it may be dist| 00001290 72 69 62 75 74 65 64 2c 20 73 6f 20 6c 6f 6e 67 |ributed, so long| 000012a0 20 61 73 20 6e 6f 20 63 68 61 72 67 65 0a 6f 74 | as no charge.ot| 000012b0 68 65 72 20 74 68 61 6e 20 63 6f 70 79 69 6e 67 |her than copying| 000012c0 20 63 6f 73 74 73 20 61 72 65 20 63 68 61 72 67 | costs are charg| 000012d0 65 64 20 66 6f 72 20 69 74 2e 0a 20 20 0a 20 20 |ed for it.. . | 000012e0 20 20 20 20 20 20 0a 43 6f 6e 74 61 63 74 0a 2d | .Contact.-| 000012f0 2d 2d 2d 2d 2d 2d 0a 41 6e 79 20 63 6f 6d 6d 65 |------.Any comme| 00001300 6e 74 73 2c 20 71 75 65 72 69 65 73 2c 20 64 6f |nts, queries, do| 00001310 6e 61 74 69 6f 6e 73 20 6f 72 20 62 75 67 20 72 |nations or bug r| 00001320 65 70 6f 72 74 73 20 63 61 6e 20 62 65 20 73 65 |eports can be se| 00001330 6e 74 20 74 6f 20 3a 0a 0a 45 2d 4d 61 69 6c 20 |nt to :..E-Mail | 00001340 3a 20 4a 52 46 6c 65 74 40 45 73 73 65 78 2e 61 |: JRFlet@Essex.a| 00001350 63 2e 75 6b 0a 55 52 4c 20 20 20 20 3a 20 68 74 |c.uk.URL : ht| 00001360 74 70 3a 2f 2f 63 73 77 77 77 32 2e 65 73 73 65 |tp://cswww2.esse| 00001370 78 2e 61 63 2e 75 6b 2f 75 73 65 72 73 2f 6a 72 |x.ac.uk/users/jr| 00001380 66 6c 65 74 0a 0a 53 6e 61 69 6c 20 4d 61 69 6c |flet..Snail Mail| 00001390 20 3a 0a 20 20 20 20 4a 75 73 74 69 6e 20 46 6c | :. Justin Fl| 000013a0 65 74 63 68 65 72 0a 20 20 20 20 94 47 61 6c 61 |etcher. .Gala| 000013b0 64 72 69 65 6c 95 0a 20 20 20 20 31 37 62 20 43 |driel.. 17b C| 000013c0 72 6f 6d 77 65 6c 6c 20 52 6f 61 64 2c 0a 20 20 |romwell Road,. | 000013d0 20 20 57 65 65 74 69 6e 67 2c 0a 20 20 20 20 42 | Weeting,. B| 000013e0 72 61 6e 64 6f 6e 2c 0a 20 20 20 20 53 75 66 66 |randon,. Suff| 000013f0 6f 6c 6b 2e 0a 20 20 20 20 49 50 32 37 20 30 51 |olk.. IP27 0Q| 00001400 54 0a 0a 55 6e 69 20 61 64 64 72 65 73 73 20 3a |T..Uni address :| 00001410 20 28 79 65 61 72 20 31 39 39 35 2f 36 20 6f 6e | (year 1995/6 on| 00001420 6c 79 29 0a 20 20 20 20 45 64 64 69 6e 67 74 6f |ly). Eddingto| 00001430 6e 20 54 6f 77 65 72 2c 0a 20 20 20 20 46 6c 61 |n Tower,. Fla| 00001440 74 20 39 2f 35 2c 0a 20 20 20 20 55 6e 69 76 65 |t 9/5,. Unive| 00001450 72 73 69 74 79 20 6f 66 20 45 73 73 65 78 2c 0a |rsity of Essex,.| 00001460 20 20 20 20 57 69 76 65 6e 68 6f 65 20 50 61 72 | Wivenhoe Par| 00001470 6b 2c 0a 20 20 20 20 43 6f 6c 63 68 65 73 74 65 |k,. Colcheste| 00001480 72 2e 0a 20 20 20 20 43 4f 34 20 33 53 51 0a 0a |r.. CO4 3SQ..| 00001490 0a 48 69 73 74 6f 72 79 0a 2d 2d 2d 2d 2d 2d 2d |.History.-------| 000014a0 0a 56 65 72 73 69 6f 6e 20 31 2e 30 30 20 3a 20 |.Version 1.00 : | 000014b0 30 38 20 53 65 70 20 31 39 39 35 0a 20 20 20 20 |08 Sep 1995. | 000014c0 20 20 20 20 20 20 20 20 20 20 20 46 69 72 73 74 | First| 000014d0 20 76 65 72 73 69 6f 6e 20 77 72 69 74 74 65 6e | version written| 000014e0 0a 56 65 72 73 69 6f 6e 20 31 2e 30 31 20 3a 20 |.Version 1.01 : | 000014f0 31 31 20 53 65 70 20 31 39 39 35 0a 20 20 20 20 |11 Sep 1995. | 00001500 20 20 20 20 20 20 20 20 20 20 20 4d 6f 64 69 66 | Modif| 00001510 69 63 61 74 69 6f 6e 73 20 74 6f 20 66 69 78 20 |ications to fix | 00001520 62 75 67 73 20 77 69 74 68 20 41 72 63 46 53 20 |bugs with ArcFS | 00001530 6e 65 65 64 69 6e 67 20 6d 6f 72 65 20 6d 65 6d |needing more mem| 00001540 6f 72 79 20 74 68 61 6e 0a 20 20 20 20 20 20 20 |ory than. | 00001550 20 20 20 20 20 20 20 20 77 65 20 68 61 76 65 2e | we have.| 00001560 20 48 65 6c 70 20 66 69 6c 65 20 77 72 69 74 74 | Help file writt| 00001570 65 6e 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 |en.. | 00001580 20 20 20 43 6f 6e 66 69 67 2b 20 6d 6f 64 75 6c | Config+ modul| 00001590 65 20 77 72 69 74 74 65 6e 20 74 6f 20 73 65 74 |e written to set| 000015a0 20 64 65 66 61 75 6c 74 20 66 65 61 74 75 72 65 | default feature| 000015b0 73 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 |s.. | 000015c0 20 20 54 68 69 73 20 66 75 6c 6c 20 76 65 72 73 | This full vers| 000015d0 69 6f 6e 20 63 61 6e 20 62 65 20 6f 62 74 61 69 |ion can be obtai| 000015e0 6e 65 64 20 66 72 6f 6d 20 74 68 65 20 61 62 6f |ned from the abo| 000015f0 76 65 20 55 52 4c 2c 20 6f 72 20 62 79 0a 20 20 |ve URL, or by. | 00001600 20 20 20 20 20 20 20 20 20 20 20 20 20 45 4d 61 | EMa| 00001610 69 6c 20 74 6f 20 74 68 65 20 61 62 6f 76 65 20 |il to the above | 00001620 61 64 64 72 65 73 73 2e 0a 56 65 72 73 69 6f 6e |address..Version| 00001630 20 31 2e 30 31 43 3a 20 31 34 20 4e 6f 76 20 31 | 1.01C: 14 Nov 1| 00001640 39 39 35 0a 20 20 20 20 20 20 20 20 20 20 20 20 |995. | 00001650 20 20 20 49 64 65 6e 74 69 63 61 6c 20 74 6f 20 | Identical to | 00001660 31 2e 30 31 2c 20 62 75 74 20 43 6f 6d 70 72 65 |1.01, but Compre| 00001670 73 73 65 64 20 75 73 69 6e 67 20 42 61 73 43 6f |ssed using BasCo| 00001680 6d 70 72 65 73 73 20 66 6f 72 0a 20 20 20 20 20 |mpress for. | 00001690 20 20 20 20 20 20 20 20 20 20 41 63 6f 72 6e 20 | Acorn | 000016a0 55 73 65 72 27 73 20 2a 49 6e 66 6f 20 73 65 63 |User's *Info sec| 000016b0 74 69 6f 6e 2e 20 43 6f 6e 66 69 67 75 72 65 8c |tion. Configure.| 000016c0 20 6f 70 74 69 6f 6e 20 6e 6f 77 20 70 65 72 66 | option now perf| 000016d0 6f 72 6d 73 0a 20 20 20 20 20 20 20 20 20 20 20 |orms. | 000016e0 20 20 20 20 2a 46 69 6c 65 72 5f 52 75 6e 20 69 | *Filer_Run i| 000016f0 66 20 6e 6f 20 43 6f 6e 66 69 67 50 6c 75 73 20 |f no ConfigPlus | 00001700 70 72 65 73 65 6e 74 2e 0a 0a |present...| 0000170a