Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_16.ADF » PROGS/TRANS/document
PROGS/TRANS/document
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 » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_16.ADF |
Filename: | PROGS/TRANS/document |
Read OK: | ✔ |
File size: | 1948 bytes |
Load address: | 64204556 |
Exec address: | 6D75636F |
File contents
Introduction V1.1: ~~~~~~~~~~~~~~~~~~ A few years ago, when studying for my GCSE exams, I was learning a foreign language, German in fact, and each week my teacher handed me a list of one hundred words to learn for our next lesson two days later. I spent hours memorising the words and I always thought that there was a better way to learn them rather than just repeating them over and over in a vain attempt to remember them. I was sure that it would be fairly simple to write a collection of programs that would enable people to enter in a list of words (foreign and theirEnglishequivalents)into the computer to be tested on. One step further the list could be edited and ammended at a later date. There should also be an option to print out the list of words if the need is there. Finally, some four years later, I've got around to programming it! The latest, overall version, of the program is Version 1.1. This overall version consists of the following files: Vocab Tester Loader V1.2 (CHAIN"MENU") Vocab Tester Foreign To English V1.4 (CHAIN"F2E") Vocab Tester English To Foreign V1.4 (CHAIN"E2F") File Editor V1.2 (CHAIN"EDIT") File Printer V1.2 (CHAIN"PRINT") Document Reader N/A (CHAIN"READER") document (you're reading it) V1.1 (VIEW File) All of these programs, and the VIEW file, are loaded from the program MENU, although you can use them individually if you wish to. Overview To All Of The Programs: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ When 'Loading' a file from disk make sure it does exist. If you try to load a file that does not exist the program that you are using will give an error message and stop running. When you are making a menu choice, or such like, and there is a question mark '?' after the question then the program requires you to enter a choice, ie 'Y', then you need to press the 'RETURN' key. If you can make choices but are not presented with a '?' then all you have to do is press the relevant key, you do not need to press the 'RETURN' key. All of the programs are simple enough to use, meaning that I think it is fairly pointless explaining how they work in great detail. To create a file you will have to load either of the 'Vocabulary Tester' progams from the main menu, these two programs are also the programs that will test you on the entered/loaded list of words. If you save a file with the 'English Answers' program you CAN load that file into the 'Foreign Answers' program and be tested on the foreign equivalent words, and visa versa with the 'Foreign Answers' program. When you are being tested on a list of words the words are given to you in a random order. If you get a word correct you will NOT be asked it again until you re-test yourself on the same list. When you get a list wrong you will be told so, and given the correct answer, the program will then pick a random word in the list for you to answer. You WILL be asked to answer any words that you get wrong again and again until you get them correct! Once all the list has been answered correctly you will be shown some menu options. You should also take not to the bottom of the incorrect total that runs during the test. From it you will be able to tell just how good you are doing during, and after the test. The edit program allows you to add and ammend a saved list. I allows you to search for a word in the list, jump to a position in the list and then save the changes. I have also added a delete function that will delete the current position of the list that you are looking at. You cannot 'tag' list elements to be deleted nor can you delete the last element in the list. I decided not to go overboard with the delete function as its use should be limited. Problems With The Programs: ~~~~~~~~~~~~~~~~~~~~~~~~~~~ As the programs use a minimum of two arrays each I would recommend that the program is run on a 64k electron or equivalent. By all means use this program on a standard electron (even a tape system), but don't be suprised if you get a 'No room' message when using a large list. You will nodoubt notice that the program that allows you to print out a hard copy of a saved list prints it out in a rather crude manner. There are two reasons for this. The first being that as so many different printers are connectable to the electron it is hard to define a standard for printing. The second is that I'm new to accessing a printer using BBC BASIC! I have to learn more about this subject of programming. Another problem I've noticed during testing of the programs as a whole is that my routines for inputting a keypress, without the need for pressing RETURN after making a choice, can sometimes seem to ignore a key press. This is possibly due to me clearing the keyboard buffer each time the program scans for an input using INKEY. I had to do this to stop inputs building up and generally causing alot of problems. All I ask is that until I can find a better method of reading the keyboard (ie delving into the realms of assembly language...gulp!) be patient, and press the key a bit longer. In a nutshell... ~~~~~~~~~~~~~~~~ ...that's the program. Future versions will, hopefully, iron out the mentioned problems. But, as I do tend to take ages to get around to doing things then please feel free to modify the program accordingly to suit your own needs or to make it more user-friendly for others. Depending on how adventurous I feel I may include a facility so that the program will point out to you how many times it took you to get an answer correct, highlighting words that the user has a serious problem remembering. Don't hold your breath for this option though! I haven't got a clue how to do this yet either! If you make any adjustments to the program all I ask is that you keep the credit REM statements in the program. Apologies for the state of the code to all of you who are going to change bits! I suppose that you could always add a bit of bolognaise to it... If you want to get more out of your electron then why not contact: Electron User Group (EUG), 'Gus Donnachaidh, 25, Bertie Road, Southsea, Hampshire, PO4 8JX Or 'phone 'Gus on 0705 781168 for more details. I hope that the program is of use to you as it stands. C.Weber September '94 :^)
00000000 49 6e 74 72 6f 64 75 63 74 69 6f 6e 20 56 31 2e |Introduction V1.| 00000010 31 3a 0d 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e |1:.~~~~~~~~~~~~~| 00000020 7e 7e 7e 7e 7e 0d 41 20 20 66 65 77 20 20 79 65 |~~~~~.A few ye| 00000030 61 72 73 1a 20 61 67 6f 2c 20 77 68 65 6e 1a 20 |ars. ago, when. | 00000040 73 74 75 64 79 69 6e 67 20 20 66 6f 72 20 20 6d |studying for m| 00000050 79 20 20 47 43 53 45 20 65 78 61 6d 73 2c 20 20 |y GCSE exams, | 00000060 49 20 77 61 73 20 6c 65 61 72 6e 69 6e 67 20 61 |I was learning a| 00000070 0d 66 6f 72 65 69 67 6e 20 6c 61 6e 67 75 61 67 |.foreign languag| 00000080 65 2c 20 47 65 72 6d 61 6e 20 69 6e 20 66 61 63 |e, German in fac| 00000090 74 2c 20 61 6e 64 20 65 61 63 68 1a 20 77 65 65 |t, and each. wee| 000000a0 6b 1a 20 6d 79 1a 20 74 65 61 63 68 65 72 1a 20 |k. my. teacher. | 000000b0 68 61 6e 64 65 64 20 6d 65 20 61 0d 6c 69 73 74 |handed me a.list| 000000c0 20 6f 66 20 6f 6e 65 20 68 75 6e 64 72 65 64 20 | of one hundred | 000000d0 77 6f 72 64 73 20 74 6f 20 6c 65 61 72 6e 20 66 |words to learn f| 000000e0 6f 72 20 6f 75 72 20 6e 65 78 74 20 6c 65 73 73 |or our next less| 000000f0 6f 6e 20 74 77 6f 20 64 61 79 73 20 6c 61 74 65 |on two days late| 00000100 72 2e 0d 0d 49 20 73 70 65 6e 74 20 68 6f 75 72 |r...I spent hour| 00000110 73 20 6d 65 6d 6f 72 69 73 69 6e 67 20 74 68 65 |s memorising the| 00000120 20 77 6f 72 64 73 20 20 61 6e 64 20 49 20 61 6c | words and I al| 00000130 77 61 79 73 20 74 68 6f 75 67 68 74 20 74 68 61 |ways thought tha| 00000140 74 1a 20 74 68 65 72 65 20 77 61 73 20 61 0d 62 |t. there was a.b| 00000150 65 74 74 65 72 20 77 61 79 20 74 6f 20 6c 65 61 |etter way to lea| 00000160 72 6e 20 74 68 65 6d 20 72 61 74 68 65 72 20 74 |rn them rather t| 00000170 68 61 6e 20 6a 75 73 74 20 72 65 70 65 61 74 69 |han just repeati| 00000180 6e 67 20 74 68 65 6d 20 6f 76 65 72 20 61 6e 64 |ng them over and| 00000190 1a 20 6f 76 65 72 20 69 6e 0d 61 20 76 61 69 6e |. over in.a vain| 000001a0 20 61 74 74 65 6d 70 74 20 74 6f 20 72 65 6d 65 | attempt to reme| 000001b0 6d 62 65 72 20 74 68 65 6d 2e 0d 0d 49 1a 20 77 |mber them...I. w| 000001c0 61 73 1a 20 73 75 72 65 1a 20 74 68 61 74 1a 20 |as. sure. that. | 000001d0 69 74 1a 20 77 6f 75 6c 64 1a 20 62 65 1a 20 66 |it. would. be. f| 000001e0 61 69 72 6c 79 1a 20 73 69 6d 70 6c 65 20 74 6f |airly. simple to| 000001f0 20 77 72 69 74 65 20 61 20 63 6f 6c 6c 65 63 74 | write a collect| 00000200 69 6f 6e 20 6f 66 0d 70 72 6f 67 72 61 6d 73 20 |ion of.programs | 00000210 74 68 61 74 20 77 6f 75 6c 64 20 65 6e 61 62 6c |that would enabl| 00000220 65 20 70 65 6f 70 6c 65 20 74 6f 20 65 6e 74 65 |e people to ente| 00000230 72 20 69 6e 20 61 20 6c 69 73 74 20 6f 66 20 77 |r in a list of w| 00000240 6f 72 64 73 20 28 66 6f 72 65 69 67 6e 20 61 6e |ords (foreign an| 00000250 64 0d 74 68 65 69 72 1a 45 6e 67 6c 69 73 68 1a |d.their.English.| 00000260 65 71 75 69 76 61 6c 65 6e 74 73 29 1a 69 6e 74 |equivalents).int| 00000270 6f 1a 20 74 68 65 1a 20 63 6f 6d 70 75 74 65 72 |o. the. computer| 00000280 20 74 6f 20 62 65 20 74 65 73 74 65 64 20 6f 6e | to be tested on| 00000290 2e 1a 20 4f 6e 65 1a 20 73 74 65 70 0d 66 75 72 |.. One. step.fur| 000002a0 74 68 65 72 20 74 68 65 20 6c 69 73 74 20 63 6f |ther the list co| 000002b0 75 6c 64 20 62 65 20 65 64 69 74 65 64 1a 20 61 |uld be edited. a| 000002c0 6e 64 1a 20 61 6d 6d 65 6e 64 65 64 1a 20 61 74 |nd. ammended. at| 000002d0 1a 20 61 1a 20 6c 61 74 65 72 1a 20 64 61 74 65 |. a. later. date| 000002e0 2e 20 54 68 65 72 65 0d 73 68 6f 75 6c 64 20 61 |. There.should a| 000002f0 6c 73 6f 20 62 65 20 61 6e 20 6f 70 74 69 6f 6e |lso be an option| 00000300 20 74 6f 20 70 72 69 6e 74 20 6f 75 74 20 74 68 | to print out th| 00000310 65 20 6c 69 73 74 20 6f 66 20 77 6f 72 64 73 1a |e list of words.| 00000320 20 69 66 1a 20 74 68 65 1a 20 6e 65 65 64 1a 20 | if. the. need. | 00000330 69 73 0d 74 68 65 72 65 2e 0d 0d 46 69 6e 61 6c |is.there...Final| 00000340 6c 79 2c 1a 20 73 6f 6d 65 1a 20 66 6f 75 72 1a |ly,. some. four.| 00000350 20 79 65 61 72 73 1a 20 6c 61 74 65 72 2c 20 49 | years. later, I| 00000360 27 76 65 20 67 6f 74 20 61 72 6f 75 6e 64 20 74 |'ve got around t| 00000370 6f 20 70 72 6f 67 72 61 6d 6d 69 6e 67 20 69 74 |o programming it| 00000380 21 20 54 68 65 0d 6c 61 74 65 73 74 2c 20 6f 76 |! The.latest, ov| 00000390 65 72 61 6c 6c 20 76 65 72 73 69 6f 6e 2c 20 6f |erall version, o| 000003a0 66 20 74 68 65 1a 20 70 72 6f 67 72 61 6d 1a 20 |f the. program. | 000003b0 69 73 1a 20 56 65 72 73 69 6f 6e 1a 20 31 2e 31 |is. Version. 1.1| 000003c0 2e 1a 20 54 68 69 73 1a 20 6f 76 65 72 61 6c 6c |.. This. overall| 000003d0 0d 76 65 72 73 69 6f 6e 20 63 6f 6e 73 69 73 74 |.version consist| 000003e0 73 20 6f 66 20 74 68 65 20 66 6f 6c 6c 6f 77 69 |s of the followi| 000003f0 6e 67 20 66 69 6c 65 73 3a 0d 0d 56 6f 63 61 62 |ng files:..Vocab| 00000400 20 54 65 73 74 65 72 20 4c 6f 61 64 65 72 20 20 | Tester Loader | 00000410 20 20 20 20 20 20 20 20 20 20 20 56 31 2e 32 20 | V1.2 | 00000420 28 43 48 41 49 4e 22 4d 45 4e 55 22 29 0d 56 6f |(CHAIN"MENU").Vo| 00000430 63 61 62 20 54 65 73 74 65 72 20 46 6f 72 65 69 |cab Tester Forei| 00000440 67 6e 20 54 6f 20 45 6e 67 6c 69 73 68 20 56 31 |gn To English V1| 00000450 2e 34 20 28 43 48 41 49 4e 22 46 32 45 22 29 0d |.4 (CHAIN"F2E").| 00000460 56 6f 63 61 62 20 54 65 73 74 65 72 20 45 6e 67 |Vocab Tester Eng| 00000470 6c 69 73 68 20 54 6f 20 46 6f 72 65 69 67 6e 20 |lish To Foreign | 00000480 56 31 2e 34 20 28 43 48 41 49 4e 22 45 32 46 22 |V1.4 (CHAIN"E2F"| 00000490 29 0d 46 69 6c 65 20 20 45 64 69 74 6f 72 20 20 |).File Editor | 000004a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 000004b0 20 20 56 31 2e 32 20 28 43 48 41 49 4e 22 45 44 | V1.2 (CHAIN"ED| 000004c0 49 54 22 29 0d 46 69 6c 65 20 20 50 72 69 6e 74 |IT").File Print| 000004d0 65 72 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |er | 000004e0 20 20 20 20 20 56 31 2e 32 20 28 43 48 41 49 4e | V1.2 (CHAIN| 000004f0 22 50 52 49 4e 54 22 29 0d 44 6f 63 75 6d 65 6e |"PRINT").Documen| 00000500 74 20 52 65 61 64 65 72 20 20 20 20 20 20 20 20 |t Reader | 00000510 20 20 20 20 20 20 20 20 20 4e 2f 41 20 20 28 43 | N/A (C| 00000520 48 41 49 4e 22 52 45 41 44 45 52 22 29 0d 64 6f |HAIN"READER").do| 00000530 63 75 6d 65 6e 74 20 28 79 6f 75 27 72 65 20 72 |cument (you're r| 00000540 65 61 64 69 6e 67 20 69 74 29 20 20 20 20 56 31 |eading it) V1| 00000550 2e 31 20 28 56 49 45 57 20 46 69 6c 65 29 0d 0d |.1 (VIEW File)..| 00000560 41 6c 6c 1a 20 6f 66 1a 20 74 68 65 73 65 1a 20 |All. of. these. | 00000570 70 72 6f 67 72 61 6d 73 2c 1a 20 61 6e 64 1a 20 |programs,. and. | 00000580 74 68 65 20 56 49 45 57 20 66 69 6c 65 2c 20 61 |the VIEW file, a| 00000590 72 65 20 6c 6f 61 64 65 64 20 66 72 6f 6d 20 74 |re loaded from t| 000005a0 68 65 20 70 72 6f 67 72 61 6d 0d 4d 45 4e 55 2c |he program.MENU,| 000005b0 20 61 6c 74 68 6f 75 67 68 20 79 6f 75 20 63 61 | although you ca| 000005c0 6e 20 75 73 65 20 74 68 65 6d 20 69 6e 64 69 76 |n use them indiv| 000005d0 69 64 75 61 6c 6c 79 20 69 66 20 79 6f 75 20 77 |idually if you w| 000005e0 69 73 68 20 74 6f 2e 0d 0d 4f 76 65 72 76 69 65 |ish to...Overvie| 000005f0 77 20 54 6f 20 41 6c 6c 20 4f 66 20 54 68 65 20 |w To All Of The | 00000600 50 72 6f 67 72 61 6d 73 3a 0d 7e 7e 7e 7e 7e 7e |Programs:.~~~~~~| 00000610 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e |~~~~~~~~~~~~~~~~| 00000620 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 0d 57 68 65 6e 20 |~~~~~~~~~~.When | 00000630 27 4c 6f 61 64 69 6e 67 27 20 61 20 66 69 6c 65 |'Loading' a file| 00000640 20 66 72 6f 6d 20 64 69 73 6b 1a 20 6d 61 6b 65 | from disk. make| 00000650 1a 20 73 75 72 65 1a 20 69 74 1a 20 64 6f 65 73 |. sure. it. does| 00000660 20 65 78 69 73 74 2e 20 49 66 20 79 6f 75 20 74 | exist. If you t| 00000670 72 79 20 74 6f 0d 6c 6f 61 64 20 61 20 66 69 6c |ry to.load a fil| 00000680 65 20 74 68 61 74 20 64 6f 65 73 20 6e 6f 74 20 |e that does not | 00000690 65 78 69 73 74 20 74 68 65 20 70 72 6f 67 72 61 |exist the progra| 000006a0 6d 20 74 68 61 74 1a 20 79 6f 75 1a 20 61 72 65 |m that. you. are| 000006b0 20 75 73 69 6e 67 20 77 69 6c 6c 20 67 69 76 65 | using will give| 000006c0 0d 61 6e 20 65 72 72 6f 72 20 6d 65 73 73 61 67 |.an error messag| 000006d0 65 20 61 6e 64 20 73 74 6f 70 20 72 75 6e 6e 69 |e and stop runni| 000006e0 6e 67 2e 0d 0d 57 68 65 6e 20 79 6f 75 20 61 72 |ng...When you ar| 000006f0 65 20 6d 61 6b 69 6e 67 20 61 20 6d 65 6e 75 20 |e making a menu | 00000700 63 68 6f 69 63 65 2c 20 6f 72 20 73 75 63 68 20 |choice, or such | 00000710 6c 69 6b 65 2c 20 61 6e 64 20 74 68 65 72 65 1a |like, and there.| 00000720 20 69 73 1a 20 61 20 71 75 65 73 74 69 6f 6e 0d | is. a question.| 00000730 6d 61 72 6b 1a 20 27 3f 27 1a 20 61 66 74 65 72 |mark. '?'. after| 00000740 1a 20 74 68 65 1a 20 71 75 65 73 74 69 6f 6e 1a |. the. question.| 00000750 20 74 68 65 6e 1a 20 74 68 65 20 70 72 6f 67 72 | then. the progr| 00000760 61 6d 20 72 65 71 75 69 72 65 73 20 79 6f 75 20 |am requires you | 00000770 74 6f 20 65 6e 74 65 72 20 61 0d 63 68 6f 69 63 |to enter a.choic| 00000780 65 2c 20 69 65 20 27 59 27 2c 20 74 68 65 6e 20 |e, ie 'Y', then | 00000790 79 6f 75 20 6e 65 65 64 20 74 6f 1a 20 70 72 65 |you need to. pre| 000007a0 73 73 1a 20 74 68 65 20 27 52 45 54 55 52 4e 27 |ss. the 'RETURN'| 000007b0 20 6b 65 79 2e 20 49 66 20 79 6f 75 20 63 61 6e | key. If you can| 000007c0 20 6d 61 6b 65 0d 63 68 6f 69 63 65 73 20 62 75 | make.choices bu| 000007d0 74 20 61 72 65 20 6e 6f 74 20 70 72 65 73 65 6e |t are not presen| 000007e0 74 65 64 20 77 69 74 68 20 61 20 27 3f 27 20 74 |ted with a '?' t| 000007f0 68 65 6e 1a 20 61 6c 6c 20 79 6f 75 20 68 61 76 |hen. all you hav| 00000800 65 20 74 6f 20 64 6f 20 69 73 20 70 72 65 73 73 |e to do is press| 00000810 0d 74 68 65 20 72 65 6c 65 76 61 6e 74 20 6b 65 |.the relevant ke| 00000820 79 2c 20 79 6f 75 20 64 6f 20 6e 6f 74 20 6e 65 |y, you do not ne| 00000830 65 64 20 74 6f 20 70 72 65 73 73 20 74 68 65 20 |ed to press the | 00000840 27 52 45 54 55 52 4e 27 20 6b 65 79 2e 0d 0d 41 |'RETURN' key...A| 00000850 6c 6c 1a 20 6f 66 1a 20 74 68 65 20 70 72 6f 67 |ll. of. the prog| 00000860 72 61 6d 73 20 61 72 65 20 73 69 6d 70 6c 65 20 |rams are simple | 00000870 65 6e 6f 75 67 68 20 74 6f 20 75 73 65 2c 20 6d |enough to use, m| 00000880 65 61 6e 69 6e 67 20 74 68 61 74 20 49 20 74 68 |eaning that I th| 00000890 69 6e 6b 20 69 74 20 69 73 0d 66 61 69 72 6c 79 |ink it is.fairly| 000008a0 20 70 6f 69 6e 74 6c 65 73 73 20 65 78 70 6c 61 | pointless expla| 000008b0 69 6e 69 6e 67 20 68 6f 77 20 74 68 65 79 20 77 |ining how they w| 000008c0 6f 72 6b 20 69 6e 20 67 72 65 61 74 20 64 65 74 |ork in great det| 000008d0 61 69 6c 2e 0d 0d 54 6f 20 63 72 65 61 74 65 20 |ail...To create | 000008e0 61 1a 20 66 69 6c 65 1a 20 79 6f 75 20 77 69 6c |a. file. you wil| 000008f0 6c 20 68 61 76 65 20 74 6f 20 6c 6f 61 64 20 65 |l have to load e| 00000900 69 74 68 65 72 20 6f 66 20 74 68 65 20 27 56 6f |ither of the 'Vo| 00000910 63 61 62 75 6c 61 72 79 20 54 65 73 74 65 72 27 |cabulary Tester'| 00000920 0d 70 72 6f 67 61 6d 73 20 66 72 6f 6d 20 74 68 |.progams from th| 00000930 65 20 6d 61 69 6e 20 6d 65 6e 75 2c 1a 20 74 68 |e main menu,. th| 00000940 65 73 65 20 74 77 6f 20 70 72 6f 67 72 61 6d 73 |ese two programs| 00000950 20 61 72 65 20 61 6c 73 6f 20 74 68 65 20 70 72 | are also the pr| 00000960 6f 67 72 61 6d 73 20 74 68 61 74 0d 77 69 6c 6c |ograms that.will| 00000970 20 74 65 73 74 20 79 6f 75 20 6f 6e 20 74 68 65 | test you on the| 00000980 20 65 6e 74 65 72 65 64 2f 6c 6f 61 64 65 64 20 | entered/loaded | 00000990 6c 69 73 74 20 6f 66 20 77 6f 72 64 73 2e 20 49 |list of words. I| 000009a0 66 20 79 6f 75 20 73 61 76 65 20 61 20 66 69 6c |f you save a fil| 000009b0 65 20 77 69 74 68 0d 74 68 65 20 27 45 6e 67 6c |e with.the 'Engl| 000009c0 69 73 68 20 41 6e 73 77 65 72 73 27 20 70 72 6f |ish Answers' pro| 000009d0 67 72 61 6d 20 79 6f 75 20 43 41 4e 1a 20 6c 6f |gram you CAN. lo| 000009e0 61 64 1a 20 74 68 61 74 1a 20 66 69 6c 65 1a 20 |ad. that. file. | 000009f0 69 6e 74 6f 20 74 68 65 20 27 46 6f 72 65 69 67 |into the 'Foreig| 00000a00 6e 0d 41 6e 73 77 65 72 73 27 20 70 72 6f 67 72 |n.Answers' progr| 00000a10 61 6d 20 61 6e 64 20 62 65 20 74 65 73 74 65 64 |am and be tested| 00000a20 20 6f 6e 20 74 68 65 20 66 6f 72 65 69 67 6e 20 | on the foreign | 00000a30 65 71 75 69 76 61 6c 65 6e 74 20 77 6f 72 64 73 |equivalent words| 00000a40 2c 1a 20 61 6e 64 1a 20 76 69 73 61 0d 76 65 72 |,. and. visa.ver| 00000a50 73 61 20 77 69 74 68 20 74 68 65 20 27 46 6f 72 |sa with the 'For| 00000a60 65 69 67 6e 20 41 6e 73 77 65 72 73 27 20 70 72 |eign Answers' pr| 00000a70 6f 67 72 61 6d 2e 0d 0d 57 68 65 6e 20 79 6f 75 |ogram...When you| 00000a80 20 61 72 65 20 62 65 69 6e 67 20 74 65 73 74 65 | are being teste| 00000a90 64 20 6f 6e 20 61 20 6c 69 73 74 20 6f 66 20 77 |d on a list of w| 00000aa0 6f 72 64 73 20 74 68 65 20 77 6f 72 64 73 20 61 |ords the words a| 00000ab0 72 65 20 67 69 76 65 6e 20 74 6f 20 79 6f 75 20 |re given to you | 00000ac0 69 6e 0d 61 1a 20 72 61 6e 64 6f 6d 1a 20 6f 72 |in.a. random. or| 00000ad0 64 65 72 2e 20 49 66 20 79 6f 75 20 67 65 74 20 |der. If you get | 00000ae0 61 20 77 6f 72 64 20 63 6f 72 72 65 63 74 20 79 |a word correct y| 00000af0 6f 75 20 77 69 6c 6c 20 4e 4f 54 20 62 65 20 61 |ou will NOT be a| 00000b00 73 6b 65 64 20 69 74 20 61 67 61 69 6e 0d 75 6e |sked it again.un| 00000b10 74 69 6c 20 79 6f 75 20 72 65 2d 74 65 73 74 20 |til you re-test | 00000b20 79 6f 75 72 73 65 6c 66 20 6f 6e 20 74 68 65 20 |yourself on the | 00000b30 73 61 6d 65 20 6c 69 73 74 2e 20 57 68 65 6e 20 |same list. When | 00000b40 79 6f 75 20 67 65 74 20 61 20 6c 69 73 74 20 77 |you get a list w| 00000b50 72 6f 6e 67 20 79 6f 75 0d 77 69 6c 6c 20 62 65 |rong you.will be| 00000b60 20 74 6f 6c 64 1a 20 73 6f 2c 20 61 6e 64 20 67 | told. so, and g| 00000b70 69 76 65 6e 20 74 68 65 20 63 6f 72 72 65 63 74 |iven the correct| 00000b80 20 61 6e 73 77 65 72 2c 20 74 68 65 20 70 72 6f | answer, the pro| 00000b90 67 72 61 6d 20 77 69 6c 6c 20 74 68 65 6e 20 70 |gram will then p| 00000ba0 69 63 6b 0d 61 20 72 61 6e 64 6f 6d 20 77 6f 72 |ick.a random wor| 00000bb0 64 20 69 6e 1a 20 74 68 65 1a 20 6c 69 73 74 20 |d in. the. list | 00000bc0 66 6f 72 20 79 6f 75 20 74 6f 20 61 6e 73 77 65 |for you to answe| 00000bd0 72 2e 20 59 6f 75 20 57 49 4c 4c 20 62 65 20 61 |r. You WILL be a| 00000be0 73 6b 65 64 20 74 6f 20 61 6e 73 77 65 72 0d 61 |sked to answer.a| 00000bf0 6e 79 20 77 6f 72 64 73 20 74 68 61 74 20 79 6f |ny words that yo| 00000c00 75 20 67 65 74 20 77 72 6f 6e 67 1a 20 61 67 61 |u get wrong. aga| 00000c10 69 6e 1a 20 61 6e 64 20 61 67 61 69 6e 20 75 6e |in. and again un| 00000c20 74 69 6c 20 79 6f 75 20 67 65 74 20 74 68 65 6d |til you get them| 00000c30 20 63 6f 72 72 65 63 74 21 0d 4f 6e 63 65 20 61 | correct!.Once a| 00000c40 6c 6c 20 74 68 65 20 20 6c 69 73 74 20 68 61 73 |ll the list has| 00000c50 20 62 65 65 6e 20 61 6e 73 77 65 72 65 64 20 63 | been answered c| 00000c60 6f 72 72 65 63 74 6c 79 20 79 6f 75 20 77 69 6c |orrectly you wil| 00000c70 6c 20 62 65 20 73 68 6f 77 6e 20 73 6f 6d 65 20 |l be shown some | 00000c80 6d 65 6e 75 0d 6f 70 74 69 6f 6e 73 2e 20 59 6f |menu.options. Yo| 00000c90 75 20 73 68 6f 75 6c 64 20 61 6c 73 6f 20 74 61 |u should also ta| 00000ca0 6b 65 20 6e 6f 74 20 74 6f 20 74 68 65 20 62 6f |ke not to the bo| 00000cb0 74 74 6f 6d 1a 20 6f 66 1a 20 74 68 65 1a 20 69 |ttom. of. the. i| 00000cc0 6e 63 6f 72 72 65 63 74 1a 20 74 6f 74 61 6c 0d |ncorrect. total.| 00000cd0 74 68 61 74 20 72 75 6e 73 20 64 75 72 69 6e 67 |that runs during| 00000ce0 20 74 68 65 20 74 65 73 74 2e 20 46 72 6f 6d 20 | the test. From | 00000cf0 69 74 20 79 6f 75 20 77 69 6c 6c 20 62 65 20 61 |it you will be a| 00000d00 62 6c 65 20 74 6f 1a 20 74 65 6c 6c 20 6a 75 73 |ble to. tell jus| 00000d10 74 20 68 6f 77 20 67 6f 6f 64 0d 79 6f 75 20 61 |t how good.you a| 00000d20 72 65 20 64 6f 69 6e 67 20 64 75 72 69 6e 67 2c |re doing during,| 00000d30 20 61 6e 64 20 61 66 74 65 72 20 74 68 65 20 74 | and after the t| 00000d40 65 73 74 2e 0d 0d 54 68 65 1a 20 65 64 69 74 1a |est...The. edit.| 00000d50 20 70 72 6f 67 72 61 6d 20 61 6c 6c 6f 77 73 20 | program allows | 00000d60 79 6f 75 20 74 6f 20 61 64 64 20 61 6e 64 20 61 |you to add and a| 00000d70 6d 6d 65 6e 64 20 61 20 73 61 76 65 64 20 6c 69 |mmend a saved li| 00000d80 73 74 2e 20 49 20 61 6c 6c 6f 77 73 20 79 6f 75 |st. I allows you| 00000d90 0d 74 6f 20 73 65 61 72 63 68 20 66 6f 72 1a 20 |.to search for. | 00000da0 61 20 77 6f 72 64 20 69 6e 20 74 68 65 20 6c 69 |a word in the li| 00000db0 73 74 2c 20 6a 75 6d 70 20 74 6f 20 61 20 70 6f |st, jump to a po| 00000dc0 73 69 74 69 6f 6e 20 69 6e 20 74 68 65 20 6c 69 |sition in the li| 00000dd0 73 74 20 61 6e 64 20 74 68 65 6e 0d 73 61 76 65 |st and then.save| 00000de0 20 74 68 65 20 63 68 61 6e 67 65 73 2e 20 49 20 | the changes. I | 00000df0 68 61 76 65 20 61 6c 73 6f 20 61 64 64 65 64 20 |have also added | 00000e00 61 20 64 65 6c 65 74 65 20 66 75 6e 63 74 69 6f |a delete functio| 00000e10 6e 20 74 68 61 74 20 77 69 6c 6c 20 64 65 6c 65 |n that will dele| 00000e20 74 65 20 74 68 65 0d 63 75 72 72 65 6e 74 1a 20 |te the.current. | 00000e30 70 6f 73 69 74 69 6f 6e 1a 20 6f 66 1a 20 74 68 |position. of. th| 00000e40 65 1a 20 6c 69 73 74 20 74 68 61 74 20 79 6f 75 |e. list that you| 00000e50 20 61 72 65 20 6c 6f 6f 6b 69 6e 67 20 61 74 2e | are looking at.| 00000e60 20 59 6f 75 20 63 61 6e 6e 6f 74 20 27 74 61 67 | You cannot 'tag| 00000e70 27 0d 6c 69 73 74 20 65 6c 65 6d 65 6e 74 73 20 |'.list elements | 00000e80 74 6f 20 62 65 20 64 65 6c 65 74 65 64 1a 20 6e |to be deleted. n| 00000e90 6f 72 1a 20 63 61 6e 1a 20 79 6f 75 1a 20 64 65 |or. can. you. de| 00000ea0 6c 65 74 65 20 74 68 65 20 6c 61 73 74 20 65 6c |lete the last el| 00000eb0 65 6d 65 6e 74 20 69 6e 20 74 68 65 0d 6c 69 73 |ement in the.lis| 00000ec0 74 2e 20 49 20 64 65 63 69 64 65 64 20 6e 6f 74 |t. I decided not| 00000ed0 20 74 6f 20 67 6f 20 6f 76 65 72 62 6f 61 72 64 | to go overboard| 00000ee0 20 77 69 74 68 20 74 68 65 1a 20 64 65 6c 65 74 | with the. delet| 00000ef0 65 1a 20 66 75 6e 63 74 69 6f 6e 1a 20 61 73 20 |e. function. as | 00000f00 69 74 73 20 75 73 65 0d 73 68 6f 75 6c 64 20 62 |its use.should b| 00000f10 65 20 6c 69 6d 69 74 65 64 2e 0d 0d 50 72 6f 62 |e limited...Prob| 00000f20 6c 65 6d 73 20 57 69 74 68 20 54 68 65 20 50 72 |lems With The Pr| 00000f30 6f 67 72 61 6d 73 3a 0d 7e 7e 7e 7e 7e 7e 7e 7e |ograms:.~~~~~~~~| 00000f40 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e |~~~~~~~~~~~~~~~~| 00000f50 7e 7e 7e 0d 41 73 20 74 68 65 20 70 72 6f 67 72 |~~~.As the progr| 00000f60 61 6d 73 20 75 73 65 20 61 20 6d 69 6e 69 6d 75 |ams use a minimu| 00000f70 6d 20 6f 66 20 74 77 6f 20 61 72 72 61 79 73 20 |m of two arrays | 00000f80 65 61 63 68 1a 20 49 1a 20 77 6f 75 6c 64 1a 20 |each. I. would. | 00000f90 72 65 63 6f 6d 6d 65 6e 64 20 74 68 61 74 0d 74 |recommend that.t| 00000fa0 68 65 20 70 72 6f 67 72 61 6d 20 69 73 20 72 75 |he program is ru| 00000fb0 6e 20 6f 6e 20 61 20 36 34 6b 20 65 6c 65 63 74 |n on a 64k elect| 00000fc0 72 6f 6e 20 6f 72 20 65 71 75 69 76 61 6c 65 6e |ron or equivalen| 00000fd0 74 2e 20 42 79 20 61 6c 6c 20 6d 65 61 6e 73 1a |t. By all means.| 00000fe0 20 75 73 65 20 74 68 69 73 0d 70 72 6f 67 72 61 | use this.progra| 00000ff0 6d 20 6f 6e 20 61 20 73 74 61 6e 64 61 72 64 20 |m on a standard | 00001000 65 6c 65 63 74 72 6f 6e 20 28 65 76 65 6e 20 61 |electron (even a| 00001010 20 74 61 70 65 20 73 79 73 74 65 6d 29 2c 20 62 | tape system), b| 00001020 75 74 20 64 6f 6e 27 74 20 62 65 20 73 75 70 72 |ut don't be supr| 00001030 69 73 65 64 0d 69 66 20 79 6f 75 20 67 65 74 20 |ised.if you get | 00001040 61 20 27 4e 6f 20 72 6f 6f 6d 27 20 6d 65 73 73 |a 'No room' mess| 00001050 61 67 65 20 77 68 65 6e 20 75 73 69 6e 67 20 61 |age when using a| 00001060 20 6c 61 72 67 65 20 6c 69 73 74 2e 20 0d 0d 59 | large list. ..Y| 00001070 6f 75 1a 20 77 69 6c 6c 1a 20 6e 6f 1a 64 6f 75 |ou. will. no.dou| 00001080 62 74 20 6e 6f 74 69 63 65 20 74 68 61 74 20 74 |bt notice that t| 00001090 68 65 20 70 72 6f 67 72 61 6d 20 74 68 61 74 20 |he program that | 000010a0 61 6c 6c 6f 77 73 20 79 6f 75 20 74 6f 20 70 72 |allows you to pr| 000010b0 69 6e 74 20 6f 75 74 20 61 0d 68 61 72 64 20 63 |int out a.hard c| 000010c0 6f 70 79 20 6f 66 20 61 1a 20 73 61 76 65 64 1a |opy of a. saved.| 000010d0 20 6c 69 73 74 1a 20 70 72 69 6e 74 73 20 69 74 | list. prints it| 000010e0 20 6f 75 74 20 69 6e 20 61 20 72 61 74 68 65 72 | out in a rather| 000010f0 20 63 72 75 64 65 20 6d 61 6e 6e 65 72 2e 20 54 | crude manner. T| 00001100 68 65 72 65 0d 61 72 65 1a 20 74 77 6f 20 72 65 |here.are. two re| 00001110 61 73 6f 6e 73 20 66 6f 72 20 74 68 69 73 2e 20 |asons for this. | 00001120 54 68 65 20 66 69 72 73 74 1a 20 62 65 69 6e 67 |The first. being| 00001130 1a 20 74 68 61 74 1a 20 61 73 1a 20 73 6f 1a 20 |. that. as. so. | 00001140 6d 61 6e 79 1a 20 64 69 66 66 65 72 65 6e 74 0d |many. different.| 00001150 70 72 69 6e 74 65 72 73 20 61 72 65 1a 20 63 6f |printers are. co| 00001160 6e 6e 65 63 74 61 62 6c 65 1a 20 74 6f 20 74 68 |nnectable. to th| 00001170 65 20 65 6c 65 63 74 72 6f 6e 20 69 74 20 69 73 |e electron it is| 00001180 20 68 61 72 64 20 74 6f 20 64 65 66 69 6e 65 20 | hard to define | 00001190 61 20 73 74 61 6e 64 61 72 64 0d 66 6f 72 20 70 |a standard.for p| 000011a0 72 69 6e 74 69 6e 67 2e 20 54 68 65 20 73 65 63 |rinting. The sec| 000011b0 6f 6e 64 1a 20 69 73 20 74 68 61 74 20 49 27 6d |ond. is that I'm| 000011c0 20 6e 65 77 20 74 6f 20 61 63 63 65 73 73 69 6e | new to accessin| 000011d0 67 20 61 20 70 72 69 6e 74 65 72 20 75 73 69 6e |g a printer usin| 000011e0 67 20 42 42 43 0d 42 41 53 49 43 21 20 49 20 68 |g BBC.BASIC! I h| 000011f0 61 76 65 20 74 6f 20 6c 65 61 72 6e 20 6d 6f 72 |ave to learn mor| 00001200 65 20 61 62 6f 75 74 20 74 68 69 73 20 73 75 62 |e about this sub| 00001210 6a 65 63 74 20 6f 66 20 70 72 6f 67 72 61 6d 6d |ject of programm| 00001220 69 6e 67 2e 0d 0d 41 6e 6f 74 68 65 72 20 70 72 |ing...Another pr| 00001230 6f 62 6c 65 6d 20 49 27 76 65 20 6e 6f 74 69 63 |oblem I've notic| 00001240 65 64 20 64 75 72 69 6e 67 1a 20 74 65 73 74 69 |ed during. testi| 00001250 6e 67 20 6f 66 20 74 68 65 20 70 72 6f 67 72 61 |ng of the progra| 00001260 6d 73 20 61 73 20 61 20 77 68 6f 6c 65 20 69 73 |ms as a whole is| 00001270 0d 74 68 61 74 20 6d 79 20 72 6f 75 74 69 6e 65 |.that my routine| 00001280 73 20 66 6f 72 20 69 6e 70 75 74 74 69 6e 67 20 |s for inputting | 00001290 61 1a 20 6b 65 79 1a 70 72 65 73 73 2c 20 77 69 |a. key.press, wi| 000012a0 74 68 6f 75 74 20 74 68 65 20 6e 65 65 64 20 66 |thout the need f| 000012b0 6f 72 20 70 72 65 73 73 69 6e 67 0d 52 45 54 55 |or pressing.RETU| 000012c0 52 4e 20 20 61 66 74 65 72 20 6d 61 6b 69 6e 67 |RN after making| 000012d0 20 61 20 63 68 6f 69 63 65 2c 20 63 61 6e 20 73 | a choice, can s| 000012e0 6f 6d 65 74 69 6d 65 73 20 73 65 65 6d 20 74 6f |ometimes seem to| 000012f0 1a 20 69 67 6e 6f 72 65 1a 20 61 20 6b 65 79 20 |. ignore. a key | 00001300 70 72 65 73 73 2e 0d 54 68 69 73 1a 20 69 73 1a |press..This. is.| 00001310 20 70 6f 73 73 69 62 6c 79 20 64 75 65 20 74 6f | possibly due to| 00001320 20 6d 65 20 63 6c 65 61 72 69 6e 67 20 74 68 65 | me clearing the| 00001330 20 6b 65 79 62 6f 61 72 64 20 62 75 66 66 65 72 | keyboard buffer| 00001340 1a 20 65 61 63 68 1a 20 74 69 6d 65 1a 20 74 68 |. each. time. th| 00001350 65 0d 70 72 6f 67 72 61 6d 20 73 63 61 6e 73 20 |e.program scans | 00001360 66 6f 72 1a 20 61 6e 1a 20 69 6e 70 75 74 1a 20 |for. an. input. | 00001370 75 73 69 6e 67 20 49 4e 4b 45 59 2e 20 49 20 68 |using INKEY. I h| 00001380 61 64 20 74 6f 20 64 6f 20 74 68 69 73 20 74 6f |ad to do this to| 00001390 20 73 74 6f 70 20 69 6e 70 75 74 73 0d 62 75 69 | stop inputs.bui| 000013a0 6c 64 69 6e 67 20 75 70 20 61 6e 64 20 67 65 6e |lding up and gen| 000013b0 65 72 61 6c 6c 79 20 63 61 75 73 69 6e 67 20 61 |erally causing a| 000013c0 6c 6f 74 1a 20 6f 66 1a 20 70 72 6f 62 6c 65 6d |lot. of. problem| 000013d0 73 2e 1a 20 41 6c 6c 1a 20 49 1a 20 61 73 6b 20 |s.. All. I. ask | 000013e0 69 73 20 74 68 61 74 0d 75 6e 74 69 6c 20 49 20 |is that.until I | 000013f0 63 61 6e 20 66 69 6e 64 20 61 20 62 65 74 74 65 |can find a bette| 00001400 72 20 6d 65 74 68 6f 64 20 6f 66 20 72 65 61 64 |r method of read| 00001410 69 6e 67 20 74 68 65 20 6b 65 79 62 6f 61 72 64 |ing the keyboard| 00001420 1a 20 28 69 65 20 64 65 6c 76 69 6e 67 20 69 6e |. (ie delving in| 00001430 74 6f 0d 74 68 65 1a 20 72 65 61 6c 6d 73 1a 20 |to.the. realms. | 00001440 6f 66 20 61 73 73 65 6d 62 6c 79 20 6c 61 6e 67 |of assembly lang| 00001450 75 61 67 65 2e 2e 2e 67 75 6c 70 21 29 20 62 65 |uage...gulp!) be| 00001460 20 70 61 74 69 65 6e 74 2c 20 61 6e 64 20 70 72 | patient, and pr| 00001470 65 73 73 20 74 68 65 20 6b 65 79 20 61 0d 62 69 |ess the key a.bi| 00001480 74 20 6c 6f 6e 67 65 72 2e 0d 0d 49 6e 20 61 20 |t longer...In a | 00001490 6e 75 74 73 68 65 6c 6c 2e 2e 2e 0d 7e 7e 7e 7e |nutshell....~~~~| 000014a0 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 7e 0d 2e 2e 2e |~~~~~~~~~~~~....| 000014b0 74 68 61 74 27 73 1a 20 74 68 65 20 70 72 6f 67 |that's. the prog| 000014c0 72 61 6d 2e 20 46 75 74 75 72 65 20 76 65 72 73 |ram. Future vers| 000014d0 69 6f 6e 73 1a 20 77 69 6c 6c 2c 1a 20 68 6f 70 |ions. will,. hop| 000014e0 65 66 75 6c 6c 79 2c 1a 20 69 72 6f 6e 1a 20 6f |efully,. iron. o| 000014f0 75 74 1a 20 74 68 65 0d 6d 65 6e 74 69 6f 6e 65 |ut. the.mentione| 00001500 64 20 70 72 6f 62 6c 65 6d 73 2e 1a 20 42 75 74 |d problems.. But| 00001510 2c 20 61 73 20 49 20 64 6f 20 74 65 6e 64 20 74 |, as I do tend t| 00001520 6f 20 74 61 6b 65 20 61 67 65 73 20 74 6f 20 67 |o take ages to g| 00001530 65 74 20 61 72 6f 75 6e 64 20 74 6f 20 64 6f 69 |et around to doi| 00001540 6e 67 0d 74 68 69 6e 67 73 20 74 68 65 6e 20 70 |ng.things then p| 00001550 6c 65 61 73 65 1a 20 66 65 65 6c 1a 20 66 72 65 |lease. feel. fre| 00001560 65 1a 20 74 6f 1a 20 6d 6f 64 69 66 79 20 74 68 |e. to. modify th| 00001570 65 20 70 72 6f 67 72 61 6d 20 61 63 63 6f 72 64 |e program accord| 00001580 69 6e 67 6c 79 20 74 6f 20 73 75 69 74 0d 79 6f |ingly to suit.yo| 00001590 75 72 20 6f 77 6e 20 6e 65 65 64 73 20 6f 72 20 |ur own needs or | 000015a0 74 6f 20 6d 61 6b 65 20 69 74 20 6d 6f 72 65 20 |to make it more | 000015b0 75 73 65 72 2d 66 72 69 65 6e 64 6c 79 20 66 6f |user-friendly fo| 000015c0 72 20 6f 74 68 65 72 73 2e 20 0d 0d 44 65 70 65 |r others. ..Depe| 000015d0 6e 64 69 6e 67 20 6f 6e 20 68 6f 77 20 61 64 76 |nding on how adv| 000015e0 65 6e 74 75 72 6f 75 73 20 49 20 66 65 65 6c 20 |enturous I feel | 000015f0 49 1a 20 6d 61 79 1a 20 69 6e 63 6c 75 64 65 20 |I. may. include | 00001600 61 20 66 61 63 69 6c 69 74 79 20 73 6f 20 74 68 |a facility so th| 00001610 61 74 20 74 68 65 0d 70 72 6f 67 72 61 6d 20 77 |at the.program w| 00001620 69 6c 6c 20 70 6f 69 6e 74 20 6f 75 74 20 74 6f |ill point out to| 00001630 20 79 6f 75 20 68 6f 77 20 6d 61 6e 79 20 74 69 | you how many ti| 00001640 6d 65 73 1a 20 69 74 20 74 6f 6f 6b 20 79 6f 75 |mes. it took you| 00001650 20 74 6f 20 67 65 74 20 61 6e 20 61 6e 73 77 65 | to get an answe| 00001660 72 0d 63 6f 72 72 65 63 74 2c 1a 1a 20 68 69 67 |r.correct,.. hig| 00001670 68 6c 69 67 68 74 69 6e 67 1a 1a 20 77 6f 72 64 |hlighting.. word| 00001680 73 1a 20 74 68 61 74 1a 20 74 68 65 1a 20 75 73 |s. that. the. us| 00001690 65 72 1a 20 68 61 73 1a 20 61 1a 20 73 65 72 69 |er. has. a. seri| 000016a0 6f 75 73 1a 20 70 72 6f 62 6c 65 6d 0d 72 65 6d |ous. problem.rem| 000016b0 65 6d 62 65 72 69 6e 67 2e 20 44 6f 6e 27 74 20 |embering. Don't | 000016c0 68 6f 6c 64 1a 20 79 6f 75 72 20 62 72 65 61 74 |hold. your breat| 000016d0 68 20 66 6f 72 20 74 68 69 73 20 6f 70 74 69 6f |h for this optio| 000016e0 6e 20 74 68 6f 75 67 68 21 20 49 20 68 61 76 65 |n though! I have| 000016f0 6e 27 74 20 67 6f 74 0d 61 20 63 6c 75 65 20 68 |n't got.a clue h| 00001700 6f 77 20 74 6f 20 64 6f 20 74 68 69 73 20 79 65 |ow to do this ye| 00001710 74 20 65 69 74 68 65 72 21 0d 0d 49 66 20 79 6f |t either!..If yo| 00001720 75 20 20 6d 61 6b 65 20 61 6e 79 20 20 61 64 6a |u make any adj| 00001730 75 73 74 6d 65 6e 74 73 20 74 6f 20 74 68 65 1a |ustments to the.| 00001740 20 70 72 6f 67 72 61 6d 1a 20 61 6c 6c 1a 20 49 | program. all. I| 00001750 20 61 73 6b 20 69 73 20 74 68 61 74 20 79 6f 75 | ask is that you| 00001760 20 6b 65 65 70 0d 74 68 65 1a 20 63 72 65 64 69 | keep.the. credi| 00001770 74 1a 20 52 45 4d 20 73 74 61 74 65 6d 65 6e 74 |t. REM statement| 00001780 73 20 69 6e 20 74 68 65 20 70 72 6f 67 72 61 6d |s in the program| 00001790 2e 20 41 70 6f 6c 6f 67 69 65 73 20 66 6f 72 20 |. Apologies for | 000017a0 74 68 65 20 73 74 61 74 65 20 6f 66 20 74 68 65 |the state of the| 000017b0 0d 63 6f 64 65 20 74 6f 20 61 6c 6c 1a 20 6f 66 |.code to all. of| 000017c0 20 79 6f 75 20 77 68 6f 20 61 72 65 20 67 6f 69 | you who are goi| 000017d0 6e 67 20 74 6f 20 63 68 61 6e 67 65 20 62 69 74 |ng to change bit| 000017e0 73 21 20 49 20 73 75 70 70 6f 73 65 20 74 68 61 |s! I suppose tha| 000017f0 74 20 79 6f 75 20 63 6f 75 6c 64 0d 61 6c 77 61 |t you could.alwa| 00001800 79 73 20 61 64 64 20 61 20 62 69 74 20 6f 66 20 |ys add a bit of | 00001810 62 6f 6c 6f 67 6e 61 69 73 65 20 74 6f 20 69 74 |bolognaise to it| 00001820 2e 2e 2e 0d 0d 49 66 20 79 6f 75 20 77 61 6e 74 |.....If you want| 00001830 20 74 6f 20 67 65 74 20 6d 6f 72 65 20 6f 75 74 | to get more out| 00001840 20 6f 66 20 79 6f 75 72 20 65 6c 65 63 74 72 6f | of your electro| 00001850 6e 20 74 68 65 6e 20 77 68 79 20 6e 6f 74 20 63 |n then why not c| 00001860 6f 6e 74 61 63 74 3a 0d 0d 45 6c 65 63 74 72 6f |ontact:..Electro| 00001870 6e 20 55 73 65 72 20 47 72 6f 75 70 20 28 45 55 |n User Group (EU| 00001880 47 29 2c 0d 27 47 75 73 20 44 6f 6e 6e 61 63 68 |G),.'Gus Donnach| 00001890 61 69 64 68 2c 0d 32 35 2c 20 42 65 72 74 69 65 |aidh,.25, Bertie| 000018a0 20 52 6f 61 64 2c 0d 53 6f 75 74 68 73 65 61 2c | Road,.Southsea,| 000018b0 0d 48 61 6d 70 73 68 69 72 65 2c 0d 50 4f 34 20 |.Hampshire,.PO4 | 000018c0 38 4a 58 0d 0d 4f 72 20 27 70 68 6f 6e 65 20 27 |8JX..Or 'phone '| 000018d0 47 75 73 20 6f 6e 20 30 37 30 35 20 37 38 31 31 |Gus on 0705 7811| 000018e0 36 38 20 66 6f 72 20 6d 6f 72 65 20 64 65 74 61 |68 for more deta| 000018f0 69 6c 73 2e 0d 0d 49 20 68 6f 70 65 20 74 68 61 |ils...I hope tha| 00001900 74 20 74 68 65 20 70 72 6f 67 72 61 6d 20 69 73 |t the program is| 00001910 20 6f 66 20 75 73 65 20 74 6f 20 79 6f 75 20 61 | of use to you a| 00001920 73 20 69 74 20 73 74 61 6e 64 73 2e 0d 0d 43 2e |s it stands...C.| 00001930 57 65 62 65 72 20 53 65 70 74 65 6d 62 65 72 20 |Weber September | 00001940 27 39 34 20 3a 5e 29 0d |'94 :^).| 00001948