home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / SYSTEM / MOREHAND.ZIP / MOREHAND.DOC next >
Encoding:
Text File  |  1991-04-20  |  7.2 KB  |  229 lines

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