home *** CD-ROM | disk | FTP | other *** search
/ AMOS PD CD / amospdcd.iso / sourcecode / utilities / programsearcher.doc < prev    next >
Text File  |  1991-02-20  |  6KB  |  197 lines

  1. Program Searcher V2.0
  2. Written by Roger Martensson,Sweden
  3. The whole program is copyrighted by me.
  4. If you have some ideas or faster/better code to this
  5. program, please send them to me. I don't want anyone to make
  6. any changes in this program.
  7. So, Please send your faster/better code to me.
  8. If you by accident would find a useful routine then you have my
  9. permission to take and use it.Remeber, ONLY routines not the whole program.
  10. This piece of program is SHAREWARE. If you like it and use it please
  11. me atleast 20 SEK(about 2 GBR pounds).
  12. Send the money as a money order.
  13. This program was made using Mandarin softwares excellent program AMOS.
  14. My address is:
  15. Roger Martensson,Ravinvagen 5,890 42 Mellansel,Sweden
  16.  
  17. ******************************************************************************
  18.  
  19. Welcome to Program Searcher V1.9b!
  20.  
  21. This program is,as the name says, a program searcher. You just type in the
  22. name and after a while the information comes up. But this program has a extra 
  23. feature. Let`s say you want to see if there is any C source for a game.
  24.  
  25.  Well, with this program this is a easy task. You just set options
  26. language to C,File to Source and Program to game and press return. Now you
  27. can sit back and see the program search if there is any source for a game
  28. written in C.
  29.  
  30. That was a short description of this EASY to master program. Yes, it`s very 
  31. easy to master. You just read the instructions once and off you go.
  32.  
  33. ******************************************************************************
  34.  
  35.        SEARCHING
  36.       ------------
  37. There is three ways of searching in this program. Normal search,Disc search,
  38. and option search.
  39.  
  40.         Normal Search
  41.        ---------------
  42. To use normal search you only have to write the name of the program and press
  43. return. Got that.
  44.  
  45.         Disc search
  46.        -------------
  47. To use this option you have to press F4 or click with the mouse on D search.
  48. Now appears a yes or no question.
  49. Note that you can use Left Amiga+F1/F2 instead of y/n+Return.
  50.  
  51. Now comes the hard bit. Type in the name of the disc(without :,explained
  52. later).Here`s an example:
  53.  
  54. You got a program with the discname QWE23: in the list.
  55. You press F4,answer y and write QWR23. (<--note no :)
  56. Remember to write QWE23 and not QWE 23. QWE23 and QWE 23 is two unique names.
  57.  
  58.         Option search
  59.        ---------------
  60.  
  61. To use this search method you have to know:
  62.  
  63. *file.
  64. What sort of file is it?
  65. Is it a Run only,Source,Tune/Song,Sample,Graphic or a font?
  66.  
  67. *Language
  68. In what language is it written in? (only needed for Source)
  69.  Is it written in Assembler,C,Amos,Basic,Modula 2,Adventure definition
  70. language,Draco,Pascal,Forth,Logo,Lisp or Prolog?
  71.  
  72. *Program
  73. What sort of program is it?
  74.  Is it a Demo,Product demo,Display hack,Game,Language,Application,
  75. Telecommunication,Music utility,Graphic utility,Disc utility,Antivirus
  76. utility or another utility.
  77.  
  78. All options are set to NULL as default.
  79. Null means nothing. If you don`t want to search f.ex. a
  80. special sort of language then you set the language option to Null.
  81.  
  82.  
  83.      ADDING
  84.     --------
  85.  
  86. One file can handle 800 names and to add one name to the file is easy.
  87. You only have to:
  88. *Press F1 or use the mouse.
  89. *Answer y.
  90. *Write the name of the program(max 50 letters).
  91. *Set the options of the program.
  92. *Press return.
  93. *Wait about 12 seconds.
  94. *Write the discname.(max 70 letters)
  95. *Wait again.
  96.  
  97. Remember to always end the DISCNAME with a :.
  98. Everything before the : is the discname and everything after the : is
  99. threated as a small description (or a Rem if you like).
  100. F.ex. QWE23: Only a example.
  101.  
  102.         DELETING
  103.        ----------
  104.  
  105. This must be the most easiest function.
  106. You only have to:
  107. *Press F2 or use the mouse.
  108. *Press y.
  109. *Write the name of the program to delete.
  110. *Press return.
  111. *Wait.
  112.  
  113.         EXIT
  114.        ------
  115.  
  116. Press F3.
  117.  
  118.         INFO
  119.        ------
  120.  
  121. This option searches through all the names and counts them.
  122.  
  123. This can be useful if you would like to know how many names you have
  124. inserted..
  125.  
  126.        Creating a new file
  127.        ---------------------
  128.  
  129. Well,in the main program is a file exactly the same as the name of a program.
  130. But if you`re going to CREATE a file then the file is a text file on the disc
  131.  
  132. If you would like to create a file then you only have to start the Create
  133. program,write the name of the file and waaait(ZZZ). To speed it up you can
  134. create it in RAM: and copy it to the disc with the Cli-command Copy.
  135. It`s not over yet.
  136.  
  137. Now ,you have to create a small Dos-file.
  138. Use Ed to open a file. F.ex. Ed your_example
  139. Write:
  140.  
  141. Copy sys:example_file to ram:namn
  142. Ramos ProgramSearcher.Amos
  143. Copy ram:namn to `sys:example_file`
  144. Delete ram:namn
  145.  
  146. Rename the example.info to your name with:
  147.  
  148. Copy example.info to your_example.info.
  149.  
  150. To start your program you have to double click on the `your_example` icon.
  151.  
  152. But there`s one problem. It takes a long time to exit.
  153. Why?
  154. Well, first of all does it copy the sys:example_file to ram:
  155. then it starts the main program.
  156. When you exit it copys back the example_file to the disk and deletes it from
  157. RAM:
  158.  
  159. To make it faster you have to make 3 files (well, atleast 2).
  160.  
  161. Do this:
  162.  
  163. * Ed your_example_startup
  164. * Write:
  165.  
  166.    Copy  sys:example_file to ram:namn
  167.    Ramos ProgramSearcher.AMOS
  168.  
  169. * Save it.
  170. * Move an icon to this file.
  171. * Ed your_examples_save
  172. * Write:
  173.  
  174.    Copy ram:namn to sys:example_file
  175.    Delete ram:namn
  176.  
  177. * Save it.
  178. * Move an icon to this file.
  179.  
  180. (You don`t have to make the next file.)
  181.  
  182. * Ed your_example_delete
  183. * Write:
  184.  
  185.    Delete ram:namn
  186.  
  187. * Save it.
  188. * Move an icon to this file.
  189.  
  190. ******************************************************************************
  191.  
  192. Well, that`s all. I have no more to say than:
  193.  
  194. Hasta la vista,Amigos!
  195.             
  196.             Roger Martensson,Sweden
  197.