home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / pascal / pasdox / access.txt next >
Text File  |  1985-11-18  |  2KB  |  64 lines

  1. { -----------------------------------------------------------------------------
  2.  
  3.                                  NOTICE:
  4.  
  5.       THESE MATERIALS are UNSUPPORTED by OSS!  If you do not understand how to
  6.       use them do not contact OSS for help!  We will not teach you how to 
  7.       program in Pascal.  If you find an error in these materials, feel free
  8.       to SEND US A LETTER explaining the error, and how to fix it.
  9.  
  10.       THE BOTTOM LINE:
  11.  
  12.          Use it, enjoy it, but you are on your own when using these materials!
  13.  
  14.  
  15.                                DISCLAIMER:
  16.  
  17.       OSS makes no representations or warranties with respect to the contents
  18.       hereof and specifically disclaim all warranties of merchantability or
  19.       fitness for any particular purpose.   This document is subject to change
  20.       without notice.
  21.       
  22.       OSS provides these materials for use with Personal Pascal.  Use them in
  23.       any way you wish.
  24.  
  25.    -------------------------------------------------------------------------- }
  26.  
  27.  
  28.                    Creating Desk Accessories
  29.           in Personal Pascal Versions 1.11 and Higher
  30.  
  31. In  Personal  Pascal  versions  1.11 and higher  there  is  a  new 
  32. compiler directive: {$A+}.
  33.  
  34. Using  this  directive  tells  the compiler  to  generate  a  desk 
  35. accessory rather than a stand-alone application.
  36.  
  37. You need to specify the stack size, and turn debug off in order to 
  38. successfully use this directive.  We recommend a stack size of 10K 
  39. for most accessories.
  40.  
  41. The most common usage is:
  42.  
  43. {$A+,D-,S10}
  44.  
  45. this  will tell the compiler to generate a  desk  accessory,  turn 
  46. debug mode off, and set the stack size to 10K.
  47.  
  48. With  these  directives available you no longer need  to  run  the 
  49. program  "PASACC"  to generate desk accessories.   You  need  only 
  50. compile for GEM,  then rename the resulting .PRG program to  .ACC.
  51.  
  52. If  you  do  not have version 1.11 or later,  and  would  like  to 
  53. upgrade  to  the  latest  version in order to  make  use  of  desk 
  54. accessories,  send your MASTER copy of Personal Pascal and a check 
  55. for  $10.00 to OSS.   Be sure to include your registration  number 
  56. and full address.  We will be revising Personal Pascal in the near 
  57. future so if you do not need the features described above, hold on 
  58. to your $10 'till then.
  59.  
  60. NOTICE:  Price for upgrades subject to change without notice!
  61.  
  62. -- OSS Customer Support
  63.  
  64.