home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_BAS / ED11.ZIP / ED.TXT < prev    next >
Text File  |  1994-01-27  |  3KB  |  101 lines

  1.            ED 1.1 - Visual Editor Interface
  2.         Written in Microsoft Visual Basic (tm)
  3.  
  4. Version 1.1  01/25/94 - Network Resources - 73472,1543
  5. Version 1.0  06/23/91 - Randy Neal - 72315,16
  6.              (Please don't bother Mr. Neal unless you have a
  7.               question pertaining to the 1.0 version!)
  8.  
  9. What is ED?
  10.  
  11.   ED is a Windows "front end" for use with your favorite
  12.   text editor.  It provides an easy way to access your
  13.   DOS or Windows based text editor at any time while in
  14.   Windows.
  15.  
  16. How does it work?
  17.  
  18.   When you start ED, it displays a form that lists the
  19.   files in the root directory of the current drive.  You
  20.   can switch between drives and directories using the
  21.   familiar file list commands.  Once you locate the file
  22.   you want to edit, you just "double click" the file and
  23.   ED runs your editor, passing the file name to the editor
  24.   startup command you specify on the ED Options menu.
  25.  
  26. How do I setup ED?
  27.  
  28.   Installation and setup is easy:
  29.  
  30.   Note: ED requires the Visual Basic run-time DLL.  Before
  31.   you continue, make sure you already have the Visual Basic
  32.   run time DLL (VBRUN300.DLL) in your WINDOWS directory.
  33.   VBRUN300.DLL is available on CompuServe in the Microsoft
  34.   Languages Forum.
  35.  
  36.   1. Copy all the ED files to wherever you wish.
  37.  
  38.   2. Activate the Windows Program manager, select the
  39.      program group to which you wish to install ED, and
  40.      select "File", "New", and "Program Item".
  41.  
  42.   3. On the "Program Item Properties" form, enter a
  43.      description, then enter the ED startup command.
  44.  
  45.      For example, if you installed ED into a directory
  46.      called "C:\WINDOWS\ED", then you would enter:
  47.  
  48.      Description:  Text Editor
  49.  
  50.      Command line: C:\WINDOWS\ED\ED.EXE
  51.  
  52.   4. Copy the Windows Help file ED.HLP to your WINDOWS directory,
  53.      or any other directory on your PATH.
  54.  
  55.   5. Now you should be able to start ED by clicking on
  56.      the ED icon.  If you get an error message saying
  57.      "Bad File Name" or "File Not Found", verify the
  58.      information you specified in ED's Program Item
  59.      Properties.
  60.  
  61.   6. The first time you use ED, you must select the
  62.      "Options" menu to specify the command ED will use
  63.      to start your text editor.  Enter your editor
  64.      startup command exactly as you would enter it on
  65.      the Windows "Run" option or in the Windows Program
  66.      Item Properties form for your text editor.
  67.  
  68.      When you select a file to edit using ED, ED will
  69.      append the selected file name to the command you
  70.      enter here.
  71.  
  72.      Example:
  73.  
  74.      If you normally use the DOS 6.x EDIT command to
  75.      edit files, you would enter:
  76.  
  77.      C:\DOS\EDIT.COM
  78.  
  79.      Then, when you select a file using ED, ED will
  80.      execute the command:
  81.  
  82.      C:\DOS\EDIT.COM x:\path\filename.ext
  83.  
  84.      Note:
  85.  
  86.      You can specify any standard Windows style
  87.      startup command, such as a .PIF file, a .COM file,
  88.      an .EXE file, or a .BAT file.
  89.  
  90.   6. If you want ED to terminate after starting your
  91.      MSDOS editor, you must select the "Options" menu
  92.      and click on the option "Exit After Editor Starts".
  93.      Click on it again if you decide to deactivate this
  94.      feature.
  95.  
  96.  
  97. The complete Visual Basic source files, as well as the complete
  98. Windows Help source files are included for your study and/or
  99. modification.  The ED program is "public domain" and you are free
  100. to use it or distribute it any way you want.
  101.