home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DOS_HELP / VERS.ZIP / VERSION.DOC next >
Encoding:
Text File  |  1990-10-26  |  7.1 KB  |  219 lines

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