home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #3.1 / RBBSIABOX31.cdr / prol / postcard.fix < prev    next >
Text File  |  1987-12-30  |  2KB  |  36 lines

  1. DOS ERROR FIX for POSTCARD                              December 23,1987
  2.  
  3.  
  4. Purchased a little program called POSTCARD for the IBM-PC, unfortunately
  5. it has a couple of problems.  The first, and major one is that the program
  6. checks the DOS version.  So.... If you are using DOS 3.3, it won't work.
  7. A call to the factory was not much help either, except to acknowledge that
  8. it won't work with 3.3.  What you get is an INCORRECT DOS message when the
  9. program starts.
  10.  
  11. There is hope!
  12.  
  13. To make the program work with DOS 3.3, you need to make a few changes to
  14. the POSTCARD.EXE file.  There are a couple of ways to do this.
  15.  
  16. #1 Using a program that allows you to patch or change the code like DEBUG
  17.    does with .COM files.   At location 905C HEX, change the original code
  18.    B4 30 CD 21 to B8 03 16 90.
  19.  
  20. #2 Using a file/disk patch program like MK or FM.  This time do a search
  21.    for the B4 30 CD 21.  You should find the first one around sector 98.
  22.    Don't change this first "FIND" but continue to look for the sequence of
  23.    HEX codes.  You should find the one needing a change around sector 99.
  24.    Once found, be sure to switch to the HEX edit mode, and change the code
  25.    as shown in #1 above, OLD= B4 30 CD 21    NEW= B8 03 16 90
  26.  
  27. That will take care of the DOS problem, the other one is.... that it likes
  28. to run from your A drive.  Since it does run a little slow, I just moved all
  29. the files to my VDISK and did an ASSIGN A=F.  This makes my RAM disk F look
  30. like the A drive as far as the program is concerned.
  31.  
  32. It is a cute little program for making some STRANGE looking postcards.
  33.  
  34.      ENJOY
  35.  
  36.