home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MEMORIA / MAPRAM.ZIP / RAMMAP.DOC next >
Encoding:
Text File  |  1990-11-24  |  7.3 KB  |  226 lines

  1. Computer Tyme RamMap * Copyright 1990 by Marc Perkel
  2. All Rights Reserved * Version 1.0 * Release Date: 11-24-90
  3.  
  4. Computer Tyme * 411 North Sherman, Suite 300 * Springfield Mo. 65802
  5. (800) 548-5353 Sales * (417) 866-1222 Voice * (417) 866-1665 Data
  6.  
  7. RamMap has two functions. It displays what's in memory, and it
  8. is able to free up some wasted memory blocks.
  9.  
  10. Usage:
  11.    RAMMAP
  12.    RAMMAP Free
  13.  
  14. When loading TSRs, each program has it's own environment space.
  15. Generally, this is wasted memory. Running RAMMAP FREE after each
  16. TSR load can recover this memory. It won't gain you a lot, but
  17. in some situations, every byte counts!
  18.  
  19. This is a shareware program. If you use it you must pay for it.
  20. Pricing is as follows:
  21.  
  22.    1         -  $10
  23.    10        -  $25
  24.    100       - $100
  25.    Unlimited - $250 call for details
  26.  
  27. This program is included free with other Computer Tyme Software
  28. such as MarxMenu and the DOS ToolBox.
  29.  
  30.       Information and order forms:
  31.  
  32.       ======================================================
  33.  
  34.       The Computer Tyme Dos ToolBox... Makes DOS easier for the novice,
  35.       more powerful for the professional.
  36.  
  37.       DIRECTORY MASTER is a powerful hard disk managment utility. It
  38.       brings up your hard disk files and allows you to mark selected
  39.       files so you can copy them, delete them, or move them. It also
  40.       allows you to rename files, change dates, and change attributes.
  41.       You can also run programs or set up your function keys to run
  42.       programs on selected files.
  43.  
  44.       DOLIST makes being at DOS easier. It gives you full line editing,
  45.       like a word processor, for your commands. It also stores commands
  46.       so that you can re-execute them. It remembers subdirectories and
  47.       allows you to go back to them by pressing the TAB key. It offers
  48.       programmable function keys, DOS extensions, multiple execution,
  49.       and many more features you have got to have.
  50.  
  51.       PICK DIRECTORY allows you to move through the directory system by
  52.       displaying a graphic tree and letting you use your arrow keys to
  53.       move around. It also lets you create, delete, rename, and hide
  54.       directories.
  55.  
  56.       TEDIT (from SemWare) is a powerful, easy to use full screen
  57.       editor.
  58.  
  59.       MARXTSR is a set of memory and TSR management utilities that let
  60.       you load and unload TSRs (Terminate and stay resident programs)
  61.       from memory. Utilities to list menory allocation and turn TSR's
  62.       on and off.
  63.  
  64.       And many more ... Also includes is D, a fancy directory listing
  65.       program; WHEREIS, for finding stuff on you hard disk, SORT, MOVE,
  66.       FIND, FREE, PIPEDIR, VERSION, and many more.
  67.  
  68.       The Dos Toolbox sells for $59.95.
  69.  
  70.       ======================================================
  71.  
  72.       We are also selling QEdit from Semware. QEdit is a professional
  73.       editor from Semware. TEdit is a mini version of QEdit. If you
  74.       like TEdit, You'll love QEdit.
  75.  
  76.       1-800-548-5353 Order Line
  77.       1-417-866-1222 Voice Line
  78.       1-417-866-1665 BBS Data line * 1200/2400 * 8N1 * ANSI or VT100
  79.  
  80.       
  81.       MARXMENU:
  82.  
  83.       For the menu user who is interested in POWER!
  84.  
  85.       MarxMenu version 1.99 is a menu system that uses NO RAM. MarxMenu
  86.       is compatible with all networks and contains a powerful menu
  87.       language. This language gives you complete screen control as well
  88.       as conditional menus. Math and string functions as well as
  89.       multidimensional arrays are supported. MarxMenu can read
  90.       environment variables, ports, ram locations, time, dates, the
  91.       contents of text files, ect. and make decisions on them.
  92.  
  93.       Screen control includes multi-layer exploding windows with
  94.       unlimited number of selections and unlimited windows. 43/50 line
  95.       ega and vga modes are supported. MarxMenu contains a screen
  96.       blanker, password security on anything, keyboard lockout.
  97.       MarxMenu can run programs while staying resident and read the dos
  98.       errorlevel codes they return or marxmenu can return custom
  99.       errorlevel codes to a calling program or batch file. MarxMenu can
  100.       view text files in a window, read text files into an array and
  101.       let you choose a line from that array in a window. MarxMenu can
  102.       write string arrays to text files.
  103.  
  104.       This menu system is targeted at the user whose primary interest
  105.       is POWER! Here is a simple sample of what MarxMenu script looks
  106.       like:
  107.  
  108.       ==========================================
  109.  
  110.       ;This menu is a sample of a simple menu.
  111.       ;To run this menu type 'MARX SAMPLE'
  112.  
  113.       TextColor Yellow Red
  114.       ClearScreen
  115.       BoxBorderColor Green Blue
  116.       BoxInsideColor Yellow Blue
  117.       DrawBox 25 7 32 13
  118.       WriteCenter '* Sample Menu *'
  119.       Writeln
  120.       Writeln
  121.       Writeln '   A - Directory'
  122.       Writeln '   B - Wide Directory'
  123.       Writeln '   C - Run ChkDsk'
  124.       Writeln '   D - Type Menu to Screen'
  125.       Writeln '   E - Edit This Menu'
  126.       Writeln '   F - Drop to Dos'
  127.       Writeln ' Esc - Exit'
  128.       Writeln
  129.       Write ' Select: '
  130.  
  131.       OnKey 'A'
  132.          DIR
  133.          Pause   ;Lets you see the directory before screen clears
  134.  
  135.       Onkey 'B'
  136.          DIR/W
  137.          Pause
  138.  
  139.       OnKey 'C'
  140.          CHKDSK
  141.          Pause
  142.  
  143.       OnKey 'D'
  144.          TYPE SAMPLE.MNU|MORE
  145.          Pause
  146.  
  147.       OnKey 'E'
  148.          TEDIT SAMPLE.MNU
  149.  
  150.       OnKey 'F'
  151.          @Echo To Return to the SAMPLE menu type EXIT
  152.          @Echo .
  153.          COMMAND
  154.  
  155.  
  156.       MarxMenu comes with TEDIT and MARXTSR manager and a few goodies
  157.       out of the DOS ToolBox.
  158.  
  159.       ==========================================
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.         Make Check            Computer Tyme            Order Form 2.7
  173.         Payable To:    411 North Sherman Suite 300
  174.                           Springfield Mo. 65802
  175.                      (417) 866-1222  (800) 548-5353
  176.  
  177.  
  178.         Please send me the Computer Tyme Software.
  179.  
  180.         =============================================================
  181.  
  182.         Name:        ________________________________________________
  183.  
  184.         Address:     ________________________________________________
  185.  
  186.         City/St/Zip: ________________________________________________
  187.  
  188.         Phone:       ________________________________________________
  189.  
  190.         Computer:    ________________________________________________
  191.  
  192.         Got From:    ________________________________________________
  193.  
  194.         Comments:    ________________________________________________
  195.  
  196.                      ________________________________________________
  197.  
  198.                      ________________________________________________
  199.  
  200.  
  201.         ___ Enclosed is $59.95 for The DOS ToolBox.
  202.  
  203.         ___ Enclosed is $59.95 for MarxMenu.
  204.  
  205.         ___ Enclosed is $99.95 for Both.
  206.  
  207.         ___ Enclosed is $49.95 for QEdit (from SemWare).
  208.  
  209.  
  210.         Network licenses are sold on a per fileserver basis.
  211.  
  212.         ___ Enclosed is $495 for The DOS ToolBox network version.
  213.  
  214.         ___ Enclosed is $495 for MarxMenu network version.
  215.  
  216.         ___ Enclosed is $750 for Both network version.
  217.  
  218.  
  219.         ___ Add $3.00 for Shipping and Handling.
  220.  
  221.         ___ I need 3 1/2 Inch Media.
  222.  
  223.  
  224.         =============================================================
  225.  
  226.