home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / business / sharetrk.zip / DOS_6.TXT < prev    next >
Text File  |  1993-05-15  |  1KB  |  22 lines

  1. This program is written in Clipper.  Clipper has a memory manager that lets 
  2. users run a program larger than their available RAM. 
  3. It's called Virtual Memory Management.  DOS and Windows have a memory
  4. manager called EMM386.  These two have always been designed to work hand
  5. in hand.  The new EMM386.EXE in DOS 6.0 doesn't, it will conflict with the
  6. manager in all Clipper apps and lock them up.  Hopefully, Microsoft will fix
  7. this.  There are thousands of applications, from major corporation's business
  8. programs to small shareware programs, written in Clipper.
  9.  
  10.      For now, there are a couple of ways around this:
  11.  
  12.      You can change the EMM386 device in your 'config.sys' back to the
  13. windows device.
  14.      It probably looks like this something like this now;
  15.           DEVICE=C:\DOS\EMM386.EXE NOEMS
  16.      you can change it to;
  17.           DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
  18.  
  19. Or you can install a 'switch' so that the two memory mangers don't conflict;
  20.           DEVICE=C:\DOS\EMM386.EXE NOEMS NOVCPI
  21.   
  22.