home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / DATABASE / SMARTP.ZIP / README < prev    next >
Text File  |  1992-04-12  |  4KB  |  125 lines

  1. SMARTPD Demonstration Notes
  2.  
  3.  
  4. Installing The Demo
  5. -------------------
  6.  
  7. The installation program is designed to work from a diskette.  It is 
  8. best to copy the unzipped files to your A: drive.  Then type:
  9.  
  10.     DO PDINSTAL
  11.     
  12. from a FOXPRO COMMAND WINDOW.  The installation program will automatically
  13. copy SMARTPD.APP to your FoxPro directory and help you add the following
  14. line to your CONFIG.FP file.
  15.  
  16.     _GENPD="<<FoxPro Path>>\SMARTPD.APP"
  17.  
  18.     Example:
  19.  
  20.     _GENPD="C:\FOXPRO2\SMARTPD.APP"
  21.  
  22.  
  23. Using SMARTPD
  24. -------------
  25.  
  26. Set up your printer using the Printer Setup under the "File" option of the
  27. FOXPRO System Menu or by typing:
  28.  
  29.     _PDSETUP="?"
  30.  
  31. Running PDDEMO.APP will demonstrate the capability of SMARTPD.  The demo
  32. is a fully functional version of SMARTPD with a demonstration display
  33. screen added. Try using it with REPORT FORM TO PRINT.  Note that you will
  34. not need the PDSETUP switch.  SMARTPD will automatically set up
  35. your printer to accomodate the page size specified in PAGE LAYOUT.
  36.  
  37. You should order a source code or application version of SMARTPD to use
  38. the program in your application without this screen. A registered version will
  39. include the user's manual and free telephone support.
  40.  
  41.  
  42. Ordering SMARTPD
  43. ----------------
  44.  
  45. An order form is available in ORDER.TXT.
  46.  
  47.     From Dos Type: PRINT ORDER.TXT
  48.     
  49.     From FoxPro Type: TYPE ORDER.TXT TO PRINT
  50.  
  51. SMARTPD in .APP form is only $29.95.  The complete source code is available
  52. for 39.95 plus $3.00 for shipping and handling.  Both come with complete
  53. documentation and programming examples.  Please send check or money order.
  54. SMARTPD is distributable royalty free when bundled with an application
  55. for end user use only.  Each developer must buy a copy of SMARTPD.
  56.  
  57. Timberline Systems may be reached at (801) 572-3570.
  58.  
  59.  
  60. Using The Override Mode
  61. -----------------------
  62.  
  63. In addition to the automatic page configuration, SMARTPD can be manually
  64. setup using the following switches:
  65.  
  66.     _pdparms[45] = Override Smart Processing (Must Be Set To True)
  67.                     .T.
  68.                     .F. (default)
  69.  
  70.     _pdparms[46] = Override Pitch (CPI - 10, 12, 16.67)
  71.                     PICA (default)
  72.                     ELITE
  73.                     CONDENSED
  74.  
  75.     _pdparms[47] = Override Vertical Spacing (LPI)
  76.                     6  (default)
  77.                     8
  78.  
  79.     _pdparms[48] = Override Orientation
  80.                     PORTRAIT  (default)
  81.                     LANDSCAPE                
  82.  
  83.     Note: A printer driver must be active to set this parameters
  84.  
  85.                 IF ! EMPTY(_pdsetup)
  86.                     && Printer Driver Is Active!
  87.                 ENDIF
  88.  
  89.  
  90. Other Parameters
  91. ----------------
  92.  
  93. The following parmeters further enhance the usefullness of SMARTPD:
  94.  
  95.     _pdparms[1]  = Printer Name
  96.  
  97.    _pdparms[44] = User Defined Form Feed Characteristics
  98.                     B  - Before
  99.                     A  - After  (default)
  100.                     BA - Before & After
  101.                     "" - None
  102.  
  103.     _pdparms[50] = Paper Size
  104.                     LETTER - Standard Letter 8.5 x 11  (default)
  105.                     LEGAL  - Legal Size 8.5 x 14
  106.  
  107.     _pdparms[51] = Manual Paper Feed (Laser Jet Only)
  108.                     MANUAL - Manual Feed
  109.                     TRAY   - Feed Automatically From Tray  (default)
  110.  
  111.  
  112. Removing The Demo
  113. -----------------
  114.  
  115. Remove the demo by removing the following line from your CONFIG.FP file:
  116.  
  117.     _genpd="<<FoxPro Path>>\SMARTPD.APP
  118.  
  119. Then delete the following files.
  120.  
  121.     SMARTPD.APP
  122.     PDDEMO.APP
  123.  
  124.  
  125.