home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / CODIGO_2 / WEDI / ED.DOC < prev    next >
Encoding:
Text File  |  1991-06-23  |  3.9 KB  |  129 lines

  1.            ED 1.0 - Visual Editor Interface
  2.         Written in Microsoft Visual Basic (tm)  
  3.             06/23/91 - R. Neal - 72315,16
  4.        
  5. What is ED?
  6.  
  7.   ED is a Windows "front end" for use with your favorite 
  8.   text editor.  It provides an easy way to access your 
  9.   DOS or Windows based text editor at any time while in 
  10.   Windows.
  11.   
  12. How does it work?
  13.  
  14.   When you start ED, it displays a form that lists the 
  15.   files in the root directory of the current drive.  You 
  16.   can switch between drives and directories using the 
  17.   familiar file list commands.  Once you locate the file 
  18.   you want to edit, you just "double click" the file and 
  19.   ED runs your editor, passing the file name to the editor 
  20.   startup command you specify on the ED Options menu.
  21.   
  22. How do I setup ED?
  23.  
  24.   Installation and setup is easy:
  25.   
  26.   Note: ED requires the Visual Basic run-time DLL.  Before
  27.   you continue, make sure you already have the Visual Basic 
  28.   run time DLL (VBRUN100.DLL or latest version) in your
  29.   WINDOWS directory.  VBRUN100.DLL is available on 
  30.   CompuServe in the Microsoft Languages Forum.
  31.   
  32.   1. Copy all the ED files to their own directory.  
  33.      Make sure you have ED.EXE, ED.CTL, and ED.DOC 
  34.      in the directory.
  35.      
  36.   2. Activate the Windows Program manager, select the 
  37.      program group to which you wish to install ED, and 
  38.      select "File", "New", and "Program Item".
  39.      
  40.   3. On the "Program Item Properties" form, enter a 
  41.      description, then enter the ED startup command 
  42.      followed by the name of the directory containing 
  43.      the ED files.
  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 C:\WINDOWS\ED
  51.      
  52.      Note:
  53.      
  54.      Make sure you don't enter a backslash character at 
  55.      the end of the ED directory path name.  ED will 
  56.      append the "\" character to the path name.
  57.      
  58.   4. Now you should be able to start ED by clicking on 
  59.      the ED icon.  If you get an error message saying 
  60.      "Bad File Name" or "File Not Found", verify the ED 
  61.      directory path name you specified in ED's Program 
  62.      Item Properties.
  63.      
  64.   5. The first time you use ED, you must select the 
  65.      "Options" menu to specify the command ED will use 
  66.      to start your text editor.  Enter your editor 
  67.      startup command exactly as you would enter it on 
  68.      the Windows "Run" option or in the Windows Program 
  69.      Item Properties form for your text editor.  
  70.      
  71.      When you select a file to edit using ED, ED will 
  72.      append the selected file name to the command you 
  73.      enter here.
  74.      
  75.      Example:
  76.      
  77.      If you normally use the DOS 5.0 EDIT command to 
  78.      edit files, you would enter:
  79.      
  80.      C:\DOS\EDIT.COM
  81.      
  82.      Then, when you select a file using ED, ED will 
  83.      execute the command:
  84.      
  85.      C:\DOS\EDIT.COM x:\path\filename.ext
  86.      
  87.      Note:
  88.      
  89.      You can specify any standard Windows style 
  90.      startup command, such as a .PIF file, a .COM file, 
  91.      an .EXE file, or a .BAT file. 
  92.      
  93.      Included with the ED files are sample .PIF files 
  94.      for Brief and the DOS 5.0 editor:
  95.      
  96.      B.PIF - Run Brief
  97.      E.PIF - Run DOS 5.0 EDIT
  98.           
  99.      You can specify one of these files as ED's editor 
  100.      startup command, or your can create your own.
  101.      
  102. That's all there is to it!  If you have any problems, 
  103. questions, or suggestions, you can E-Plex me, Randy Neal, 
  104. at Compuserve 72315,16.  If I have time I'll be happy to 
  105. answer your questions about ED.
  106.    
  107. Special Bonus:
  108.    
  109. The complete Visual Basic source files are included for 
  110. your study and/or modification.  The ED program is "public 
  111. domain" and you are free to use it or distribute it any 
  112. way you want.  
  113.  
  114.    
  115.    
  116.      
  117.      
  118.  
  119.  
  120.      
  121.      
  122.      
  123.      
  124.      
  125.      
  126.      
  127.  
  128.  
  129.