home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / r / redefn22.zip / REDEFINE.DOC < prev    next >
Text File  |  1992-12-15  |  15KB  |  375 lines

  1.  
  2.  
  3.  
  4.  
  5.                                »-Swift-Ware->
  6.                   Copyright (C) 1990-1992, William Cravener
  7.                             All Rights Reserved
  8.  
  9.                              TABLE OF CONTENTS
  10.  
  11.               Chapter 1 ------------- About REDEFINE.COM.
  12.               Chapter 2 ------------- How to Load REDEFINE.COM.
  13.               Chapter 3 ------------- Creating Commands.
  14.               Chapter 4 ------------- Editing Commands.
  15.               Chapter 5 ------------- Command Activation.
  16.               Chapter 6 ------------- Recalling DOS Commands.
  17.               Chapter 7 ------------- Using *POWER MODE* Options.
  18.               Chapter 8 ------------- Disclaimer and Authors address.
  19.  
  20.  
  21.  
  22.  
  23.  
  24. Chapter 1
  25. About REDEFINE.COM:
  26.  
  27.       REDEFINE  is  a  memory  resident  program  enabling  the  user  to
  28.       assign  strings  of  up  to  60  characters  to  a  key combination
  29.       consisting  of  the Alt  key  and any  of  the Number  Keys  or the
  30.       option  of assigning  the  Function Keys  F1  - F10.  This  enables
  31.       up  to  10  different commands  with  2  different  command screens
  32.       or  a total  of  20 possible  commands  quickly accessed.  There is
  33.       also  a  DOS  command  recall  screen  that  enables  the recalling
  34.       of the last 10 DOS entered commands.
  35.  
  36.       If  your like  me you often  repeatedly  type in  the same commands
  37.       thru the  day. Key  reassignment can  be used  to assign frequently
  38.       entered commands  to a  key combination.  Commands so  assigned can
  39.       be entered with a quick key press.
  40.  
  41.       For example:
  42.  
  43.       DIR C:\MAMMALS\PRIMATES\*.* /W > PRN
  44.  
  45.       Sends a listing of all filenames of the \mammals\primates directory
  46.       to the printer.  By redefining  a key  combination  such as [Alt-1]
  47.       or [F1] this whole string is typed  out for you whenever you  press
  48.       this  key or key combination.
  49.  
  50.  
  51. Chapter 2
  52. How to Load REDEFINE.COM:
  53.  
  54.       It's  best  to  load REDEFINE.COM  be  means  of  your AUTOEXEC.BAT
  55.       file  at  boot  time, but  it  can  be loaded  at  the  DOS prompt.
  56.  
  57.       REDEFINE /A   <- Use  Alt  +  number  keys.
  58.  
  59.       REDEFINE /F   <- Use Function keys.
  60.  
  61.       If  you  use  REDEFINE  on  a  CGA  monitor  and  experience SNOW -
  62.       (flickering  static  on  the  screen) then  use  the  /C  switch to
  63.       eliminate this problem.
  64.  
  65.       REDEFINE /C /A   <-Suppress  SNOW/Use Alt  + number keys.
  66.  
  67.       REDEFINE /C /F   <-Suppress SNOW/Use   Function keys.
  68.  
  69.       If you  need the memory  used by REDEFINE.COM  it's easily released
  70.       simply by  typing in  REDEFINE  /U  then pressing  the [ENTER] key.
  71.       This release  will not work  if there  is another TSR  loaded above
  72.       REDEFINE.COM.
  73.  
  74.       REDEFINE /U  (Deactivate)
  75.  
  76.  
  77. Chapter 3
  78. Creating Commands:
  79.  
  80.       Press both  [SHIFT] keys  to activate  the  main display, press
  81.       Alt-N to  choose screen #1  or #2.   You enter up  to 10 operations
  82.       per command screen,  up to 20 commands as you do at the DOS prompt.
  83.       Each command can be up to 60 characters in length.
  84.  
  85.       To CREATE a  command string press  the key combination  you wish to
  86.       assign the string  to. The cursor  will move to  the beginning of -
  87.       that line,  next type in  you command string.   When complete press
  88.       the Alt-Q keys.
  89.  
  90.       Example:
  91.  
  92.       If I wanted a listing of 3 different directories sent to my printer
  93.       I would enter a command string like the following:
  94.  
  95.         DIR C:\DIR_A > PRN[cr]DIR C:\DIR_B > PRN[cr]DIR C:\DIR_C > PRN[cr]
  96.  
  97.       The [cr] inclosed in brackets means I pressed the  ENTER key between
  98.       each command.  The [cr] would be seen as a musical note character on
  99.       the  REDEFINE command line  each time you press ENTER.  This enables
  100.       more then one command to be activated at a time one after the other.
  101.  
  102.       Here is another example:
  103.  
  104.         COPY MYFILE.DAT A:[cr]COPY MYFILE.DAT B:[cr]
  105.  
  106.       and -
  107.  
  108.         DEL *.BAK C:\DIR_A[cr]DEL *.BAK C:\DIR_B[cr]DEL *.BAK C:\DIR_C[cr]
  109.  
  110.  
  111.  
  112. Chapter 4
  113. Editing Commands:
  114.  
  115.       To  EDIT a  command string press  the  key combination  the command
  116.       string  is assigned  to. The left  and  right arrow   keys move the
  117.       cursor within  the command string.  When editing  is complete press
  118.       the Esc  key to exit.  If you want  to create a  new command string
  119.       over an  old one simply  place the  cursor at the  beginning of the
  120.       command and press the  Del key to delete  the whole line. This also
  121.       flushes the  command string  buffer. The  Home key  moves the cursor
  122.       to the  beginning of the  command the  End key moves  the cursor to
  123.       the end of the command.
  124.  
  125.       You could directly type  over an old command  string but if the new
  126.       command is shorter  then the old  string you must  place the cursor
  127.       one space past the last character  of the new command and press the
  128.       Del key. This will delete to the end of the old command string, you
  129.       then press Alt-Q.  This is necessary  to flush the remainder of the
  130.       old command from the screen and buffer.
  131.  
  132.  
  133. Chapter 5
  134. Command Activation:
  135.  
  136.       You  activate any  created command  string in  either of  two ways.
  137.  
  138.       A.  by pressing  the assigned Alt  +  Number key  or Function Key -
  139.           at the DOS prompt.
  140.  
  141.       B.  by popping  down the  display,  highlighting the  command and -
  142.           pressing the [ENTER] key.
  143.  
  144.  
  145.       To activate a  command at the  DOS level first  press the [Alt] key
  146.       and one of  the letter keys  F, S, or  D to set  the current active
  147.       command buffer.
  148.  
  149.       F - First command screen.
  150.  
  151.       S - Second command screen.
  152.  
  153.       D - DOS recall screen.
  154.  
  155.       You   can  then   activate  any  given   command  by  pressing  the
  156.       appropriate  Alt + Number Key  or  Function Key assignment.
  157.  
  158.       To activate  a command string  using the highlight  bar first press
  159.       both [Shift] keys  to pop down the  display. Now by pressing either
  160.       the DOWN or  UP arrow keys a  highlight bar will  appear. Place the
  161.       highlight bar  over the  command you  want to  activate and press -
  162.       the [ENTER] key.
  163.  
  164.  
  165. Chapter 6
  166. Recalling Last 10 DOS Commands:
  167.  
  168.       This  DOS Recall  screen is  displayed  by pressing  [Alt-D] at the
  169.       REDEFINE display.
  170.  
  171.       Use any of  the options explained  above in the  above Chapter 4 on
  172.       how to edit your commands.
  173.  
  174.       Use  the methods  explained above in  Chapter  5 to  activate these
  175.       stored commands.
  176.  
  177.       To  return  to the  key  assignment  buffers just  press  the key -
  178.       combination [Alt-N].
  179.  
  180.  
  181.  
  182. CHAPTER 7
  183. Using the * POWER MODE * Options:
  184.  
  185.       REDEFINE  POWER MODE  -  consists of  a  group of  useful utilities
  186.       that  can be  accessed  at  anytime  either at  DOS level  or from 
  187.       within other running programs.
  188.  
  189.       Here is a list of these utilities:
  190.  
  191.       Each  of  the following  13  utilities are  activated  by placing -
  192.       the  menu bar  over your  chosen option  and pressing  the [ENTER].
  193.  
  194.       1.- Display Directory of files / enabling you to -
  195.           a. View large number of files
  196.           b. Easily  move from  one drive to the next [A: B: C: or D:]
  197.           c. View free disk space
  198.           d. Retrieve file - Size / Date / Time
  199.           e. Read any text file
  200.           f. Delete any normal file
  201.           g. Copy any file to another drive
  202.           h. Change a files name
  203.           i. Change/set file date
  204.           j. Change/set file time
  205.           k. Change file attributes
  206.           l. Send a text file to printer [with option menu]
  207.           m. Display all directory paths [with quick goto feature]
  208.  
  209.       2.  Display 4 page notepad
  210.       3.  Lock system keyboard
  211.       4.  Enter new password
  212.       5.  Display time of day
  213.       6.  Display day of the month calendar
  214.       7.  Store current assignment file
  215.       8.  Load new assignment file
  216.       9.  Store current notepad file
  217.       10. Load new notepad file
  218.       11. Enable/disable sound effect
  219.       12. Change DOS cursor shape
  220.       13. Enable/disable ASCII set
  221.  
  222.  
  223.   Instruction summary for each *POWER MODE* option:
  224.  
  225.       Each   one  of  the  following  options  is  activated  by  placing
  226.       the  menu  bar  over  the  option  and  pressing  the  [ENTER] key.
  227.  
  228.  
  229.   Display directory of files:
  230.  
  231.       This option displays up to  150 filenames in the current directory.
  232.       Pressing  the [PgUp]  or [PgDn]  key  will move  you thru  the list
  233.       of file names a page at a time. 
  234.  
  235.       Each file  can be  accessed by placing  the highlight  bar over it.
  236.       and pressing one of the following keys.
  237.  
  238.       [1] = Obtain pertinent file information-size/date/time/attribute.
  239.       [2] = Read any size text file by line or page.
  240.       [3] = Delete any file name with a normal attribute.
  241.       [4] = Copy any file to another location (drive  or directory).
  242.       [5] = Change any file name (rename file).
  243.       [6] = Change/Set file creation date stamp.
  244.       [7] = Change/Set file creation time stamp.
  245.       [8] = Change a files attribute to - Normal / Read-Only / Hidden.
  246.       [9] = Send text file to your printer (with  options window).
  247.       [10]= View all directory paths on the current drive.
  248.  
  249.  
  250.   Display notepad:
  251.  
  252.       Lets   you  quickly  create  display  Notes/Addresses/Phone Numbers
  253.       Reminders.   You can  store a  note  to Disk  and later  reload it.
  254.       Gives (4) note  pads with editing  that are displayed  one over the
  255.       other by pressing a key combination.
  256.  
  257.  
  258.   Lock keyboard:
  259.  
  260.       Have  a need  to leave  your computer  un-attended /  activate this
  261.       option  and the  screen will go  blank  and the  keyboard will lock
  262.       until you  type in  your a  four letter  password. First  time this
  263.       option is  activated you  will be  requested to  enter a password -
  264.       next  time  this option  is  activated the  screen  blanks/keyboard
  265.       locks without request.
  266.  
  267.  
  268.   Enter new password:
  269.  
  270.       This option  lets you  enter a  new (4)  letter password  when ever
  271.       you wish to change it.
  272.  
  273.   Display time of day:
  274.  
  275.       Shows the current time on your computer system.
  276.  
  277.   Display day calendar:
  278.  
  279.       Shows   the   current  month  calendar   setting  on  your  system.
  280.  
  281.   Store assignment file:
  282.  
  283.       Option  enables you  to save  your  commands to  a disk  for future
  284.       access.   This  option  stores   file  to  the  current  directory.
  285.  
  286.   Load new assignment file:
  287.  
  288.       Option  enables  you to  retrieve  your commands  from  disk. Great
  289.       if you  wish to  load a new  set of  commands. You must  first move
  290.       to  the directory  where the  ASSIGN.DAT file  is located  to use -
  291.       this option feature.
  292.  
  293.   Store a notepad file:
  294.  
  295.       Option  enables you  to store  any  of the  four notepads  to disk.
  296.       Each  notepad is  assigned  the name  NOTEPAD?.TXT  where the  ? is
  297.       a  corresponding number  1 thru  4 (four  screens). For  example if
  298.       I wanted to  store notepad number  3 to disk  I would first display
  299.       notepad screen  #3 then  exit to the  *Power Mode*  menu move the -
  300.       highlight  bar down  to  this option  and  press [ENTER].  The note
  301.       is  stored with  corresponding  number. Creates  note  file to  the
  302.       current directory.
  303.  
  304.   Load a notepad file:
  305.  
  306.       This  option enables  you to  load a  previously stored  note file.
  307.       To  load a  note  file first  display  the matching  numbered  note
  308.       window  then  exit  to  the  *Power  Mode*  menu.  Next  move the -
  309.       highlight  bar down  to  this option  and  press [ENTER].  The file
  310.       is  loaded  to the  corresponding  notepad screen.  You  must first
  311.       move  to the  directory where  the  note file  is located  to use -
  312.       this option.
  313.  
  314.   Enable/disable sound effect:
  315.  
  316.       Switch's  ON  or OFF  the  sound  effect.  First  time  option is -
  317.       activated  the  sound  effect is  turned  ON.  Next  time activated
  318.       sound is turned back OFF.
  319.  
  320.   Change DOS cursor shape:
  321.  
  322.       Lets  you change  the size  of the  DOS cursor  from line  to block
  323.       shape.   This is  great for CGA  monitors  when there  is no cursor
  324.       visible  or you  would like a  larger  cursor. There  are 3 options
  325.       to choose from.  Simply choose the size you want.
  326.  
  327.   Enable/Disable ASCII set:
  328.  
  329.       This  is another  great option  that lets  you use  the full  ASCII
  330.       character set within  your favorite word  processor or text editor.
  331.       Lets  you draw  box's lines or  whatever.  Great for  drawing box's
  332.       for  your Batch  files.  When this  feature  is activated  a window
  333.       pops down  to indicate  the option is  ENABLED and  which Key combo
  334.       is used to activate the drawing keys.
  335.  
  336.       Drawing keys are:
  337.  
  338.       [Alt-Z] pops  down  full character  set  /  place  blinking  cursor
  339.               over  the  character  then  press  [ENTER]  to  use  chosen
  340.               character.
  341.  
  342.       [Alt-X] types the character you have chosen.
  343.  
  344.       There  are  some  programs  that use  these  key  combinations  and
  345.       this  would  cause  a  conflict.  No  problem  just  reaccess the -
  346.       Enable/Disable ASCII Set option   to deactivated   this feature.
  347.  
  348.   DISCLAIMER:
  349.  
  350.       This  software  and accompanying  documentation  file  are provided
  351.       "AS  IS"   without Warranty  of any  kind.  Further, »-Swift-Ware->
  352.       does  not  Warrant Guarantee  or  make any  representations regard-
  353.       ing   the  use  or  the  results  of  the  use  of  this  software.
  354.  
  355.       All risk  taken in  the use of  this software  is assumed  by you -
  356.       the  user, and Not  »-Swift-Ware->, nor  any club,  BBS,  or vendor
  357.       distributing this software.
  358.  
  359.       THIS PROGRAM IS FREEWARE:
  360.       RESTRICTIONS:
  361.  
  362.       Permission  is given  to freely  copy  and distribute  this program
  363.       so  long as  there is  no  charge except  for minimal  diskette cost
  364.       and that  it is  not added as  an incentive  to market  any other -
  365.       software  or  hardware product.  This program is NOT  PUBLIC DOMAIN
  366.       but    is  being   distributed   under  the   FREEWARE  concept...
  367.  
  368.       William Cravener
  369.       520 North Stateline Rd.
  370.       Sharon, Pa. 16146
  371.       CIS: 72230,1306
  372.  
  373.            --------------------- END of DOCUMENT ----------------------
  374. 
  375.