Maurice Lombardi a écrit :
Mark Hunt a écrit :
MEdit, published as part of MGUI by Vincenzo Morello, is a graphic text editor. It's quite attractive - and *it* permits one to *also* use different font sizes - but *this under DOS*!!!
If you want only to run medit under DOS, you do not need all this stuff Simply unzip medit22.zip at the root of a dos disk (keeping the directory structure): it will go into the directory c:\mgui Then extract the file CWSDPMI.EXE from the file csdpmi5b.zip in the djgpp distribution and put it into c:\mgui\medit\dos_bin (this is probably the step you missed: it is mandatory in pure DOS, not when you run in a DOS box under some version of Windows)
optionally to ease the call to medit and cleanup at the end put at the root of C: or anywhere in your PATH the following file
medit.bat
set OLDPATH=%PATH% set PATH=C:\MGUI\MEDIT\DOS_BIN;%PATH% set GRX20DRV=VESA gw 1280 nc 16M set MGUIDIR=C:\MGUI\SYS medit.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 set PATH=%OLDPATH% set GRX20DRV= set MGUIDIR=
then simply type at the dos prompt
medit <some file name>
You can delete the source files contained in the mgui\medit directory, and you do not need the grx distrib which is used only to compile medit
Maurice