home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / pimpatch.zip / pimrlpat.cmd < prev    next >
OS/2 REXX Batch file  |  1997-02-25  |  2KB  |  45 lines

  1. /* Patch layout of IBM Works PIM Entry Information window 
  2.    (c) Peter Franken, Aachen/Germany, 30.10.96 
  3.        peter@pool.informatik.rwth-aachen.de */
  4. signal on halt name stop
  5.  
  6. say "Größenänderung des IBM Works PIM Entry Information Fensters (in PIMRL.DLL)"
  7. say "Patch layout of IBM Works PIM Entry Information window (in PIMRL.DLL)"
  8. say
  9. say "   (c) Peter Franken, Aachen/Germany, 30.10.96"
  10. say "       peter@pool.informatik.rwth-aachen.de"
  11. say
  12. say "Tested with PIMRL.DLL of US Merlin June Beta (english)"
  13. say "                      and of Warp 4 Release (deutsch)"
  14. say
  15. say "USAGE: Copy this script together with PIMRL.DAT into you Works directory."
  16. say "       Stop _all_ Works and PIM applications (including Event Monitor!)"
  17. say "       Start this script and confirm to apply the patch by pressing enter."
  18. say 
  19. say "Press Enter to apply patch or Ctrl-C and Enter to stop"
  20. pull dummy
  21. say
  22. say "   You will receive at least one SYS1595. This is the NORMAL behaviour."
  23. say "   Don't worry :-)"
  24. say "   If you receive _one_ message confirming the patch, it is applied correctly."
  25. say "   If you receive _TWO_ SYS1595, something like this had happend:"
  26. say "     a) You have another version of PIMRL.DLL"
  27. say "             (only German GA and US Merlin level files are patched)"
  28. say "     b) You have already applied the patch"
  29. say "   In either case, with two SYS1595 _nothing_ has happened to your PIMRL.DLL."
  30. say
  31. say "   Any other error messages indicate a user error :-)=)"
  32. say 
  33. say "Trying to performing patch..."
  34. 'echo on'
  35. 'if not exist pimrlorg.dll copy pimrl.dll pimrlorg.dll'
  36. '@echo off'
  37. 'patch /a pimrl.pat'
  38. say
  39. say "To see the difference, open Works' Phonebook and check one of your entries."
  40. exit
  41.  
  42. Stop:
  43. say 
  44. say "Operation interrupted by user request. No patch performed."
  45. exit