home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / c / WP51SUP.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1992-02-27  |  28.9 KB  |  740 lines

  1.                          WP Document Interface ToolKit
  2.                  (c) 1991, 1992 LumiNet Publishing Corporation
  3.  
  4.    Seamless interface from C and Clipper programs into WordPerfect Documents
  5.  
  6.                         LumiNet Publishing Corporation
  7.                         14832 Fireside Drive,Suite 100
  8.                             Silver Spring, MD 20904
  9.  
  10.                        Sales............. (301) 384-6375
  11.                        Technical Support. (301) 622-9642
  12.  
  13. Borland is a registered trademark of Borland Corporation
  14. Clipper and Nantucket are registered trademarks of Nantucket Corporation
  15. Microsoft is a registered trademark of Microsoft Corporation
  16. MS-DOS is a registered trademark of Microsoft Corporation
  17. WordPerfect is a registered trademark of WordPerfect Corporation
  18.  
  19.                               What, Who and Why?
  20.  
  21.  
  22.  
  23. What is the WP Document Interface ToolKit?
  24.  
  25. The WP Document Interface ToolKit provides the developer with document creation
  26. and formatting functions that are fully compatable with WordPerfect version 5.1
  27. standards, and can be accessed from any C or Clipper program.
  28.  
  29. All WordPerfect codes created from the WP Document Interface ToolKit are
  30. identical to any formatting codes that you would create directly from within a
  31. WordPerfect document.   These codes can be edited and deleted, just as if they
  32. were originally created from within WordPerfect!
  33.  
  34.  
  35. Who Should Use the WP Document Interface Toolkit?
  36.  
  37. Any developer who is writing applications using C or Clipper, and has a
  38. requirement to merge application information into a WordPerfect document!
  39.  
  40.  
  41. Why Should I Use the WP Document Interface ToolKit?
  42.  
  43. Seamless Interface!  For any developer who is merging information from a database
  44. into WordPerfect documents, the WP Document Interface ToolKit is a MUST!
  45.  
  46. If you have ever tried to write and debug a complex macro from within
  47. WordPerfect, you will appreciate this opportunity to avoid using the WP Macro
  48. features - and continue to write programs in the platform you are most
  49. comfortable!
  50.  
  51. Sure, you can create a WordPerfect macro that merges ASCII delimited database
  52. information into your 'preset form'...but what happens if your macro runs slowly
  53. (especially on a LAN), or your users cancel from the macro before it has
  54. completed?  A partically completed or an empty file!
  55.  
  56. The routines that make up the WP Document Interface ToolKit allow you to merge
  57. database or text information from your application directly into a WordPerfect
  58. document - Quickly and Accurately!  No more truncated macros, no more missing
  59. data!  No more creating macros within WordPerfect!
  60.  
  61.  
  62. Compatability
  63. -------------
  64.  
  65. WordPerfect (version 5.1)
  66.  
  67.      The WP Document Interface Toolkit creates WordPerfect
  68.      5.1 compatable document files.
  69.  
  70.  
  71. Clipper (Summer '87 & 5.0)
  72.  
  73.      Using the WP Document Interface Toolkit's object files
  74.      CLP2WP.OBJ and CLPSUP.OBJ, linked with your application
  75.      provides compatability with Clipper Summer '87 and
  76.      version 5.0. 
  77.  
  78.      See Appendix B - Linking for more information on
  79.      linking object files with your application.
  80.  
  81.  
  82. Microsoft C (through version 6.0)
  83.  
  84.      Using the WP Document Interface Toolkit's object file
  85.      MSC2WP.OBJ, linked with your application provides
  86.      compatability with Microsoft C (up to and including
  87.      version 6.0). 
  88.  
  89.      See Appendix B - Linking for more information on
  90.      linking object files with your application.
  91.  
  92.  
  93.  
  94.  
  95. Borland C, C++  (through version 2.0)
  96.  
  97.      Using the WP Document Interface Toolkit's object file
  98.      BCC2WP.OBJ, linked with your application provides
  99.      compatability with Borland C and C++ (up to and
  100.      including version 2.0). 
  101.  
  102.      See Appendix B - Linking for more information on
  103.      linking object files with your application.
  104.  
  105.  
  106. Terms and Syntax
  107. ----------------
  108. argument.......   parameter passed to the function
  109. <arg1c...arg#c>   character argument, with the first argument identified with a
  110.                   '1', the second argument identified with a '2', etc.
  111. <arg1n...arg#n>   numeric argument, with the first argument identified with a
  112.                   '1', the second argument identified with a '2', etc.
  113.  
  114.  
  115.  
  116.  
  117.                                Function Overview
  118.  
  119.  
  120.       The following is a list of functions that can be called from C and
  121.       Clipper rograms:
  122.  
  123.  
  124.           Document File Handling
  125.           ----------------------
  126.                   Create/Open WPC file
  127.                   Close WPC file
  128.  
  129.           Document Formatting
  130.           -------------------
  131.                   Left Right Margins
  132.                   Top Bottom Margins
  133.                   Justification
  134.                   Page Numbering
  135.  
  136.           Text Formatting
  137.           ---------------
  138.                   Centering
  139.                   Hard Return
  140.                   Attributes on
  141.                   Attributes off
  142.                   Indent
  143.                   Add text
  144.                   Tab
  145.                   Hard Page Return
  146.  
  147.           Graphics
  148.           --------
  149.                   Horizontal Line
  150.                   Vertical Line
  151.  
  152.           System
  153.           ------
  154.                   System Date
  155.                   System Time
  156.  
  157. You can test the following routines by using the examples in the
  158. Function Reference Guide.  Not all of the routines are covered in this
  159. readme file you must register your copy of the routines for the full
  160. Function Reference Guide.
  161.  
  162.  
  163.                            Function Reference Guide
  164. ------------------------------------------------------------------------------
  165. Document File Handling Functions                                   wpopen()
  166. ------------------------------------------------------------------------------
  167.  
  168. Function..................    wpopen(<arg1c>)
  169.  
  170. Description...............    Creates a WPC v5.1 document file, and then Opens
  171.                               the file that was created
  172.  
  173. Arguments.................    <arg1c>=character=file specification
  174.  
  175. Return....................    logical
  176.                               <TRUE>=successful
  177.                               <FALSE>=unsucessful
  178.  
  179. Comments/Example..........    This routine CREATES the WPC compatable          
  180.                               document file - that is, a new document file     
  181.                               will exist after this command has successfully   
  182.                               completed.   Once the document file is created,
  183.                               it remains open during the session until a
  184.                               WPClose() call is made.  By leaving the file
  185.                               open, you have access to all document formatting, 
  186.                               graphics and text commands.  These commands will
  187.                               be placed into the document that is created and
  188.                               opened by using the WPOpen() call.
  189.  
  190.                               Reminder:  Do Not issue a WPClose() directly 
  191.                               after a WPOpen() if you intend to add any        
  192.                               formatting, graphics or text commands. The 
  193.                               document file must remain open to insert text and
  194.                               formatting codes.  Only issue a WPClose() command
  195.                               directly after a WPOpen() when you intend to
  196.                               create a WPC document with nothing in it.
  197.  
  198.                               Clipper Example:
  199.  
  200.                               filespec = "C:\WP51\DOCS\DOC00001.W51"
  201.                               If WpOpen (filespec)
  202.                                     ?"Successfully created and opened document"
  203.                               Else
  204.                                     ?"Unsuccessful"
  205.                               Endif
  206.  
  207.                               C Example:
  208.  
  209.                               int fspecsiz;
  210.                               fspecsiz=25;
  211.                               char filespec[fspecsiz+1];
  212.                               filespec = "C:\WP51\DOCS\DOC00001.W51";
  213.                               wpopen (filespec);
  214.  
  215. ----------------------------------------------------------------------------
  216. Document File Handling Functions                                  wpclose()
  217. ----------------------------------------------------------------------------
  218.  
  219. Function..................    wpclose()
  220.  
  221. Description...............    Closes a WPC v5.1 document file, one that was    
  222.                               previously created/opened from the WPOpen()      
  223.                               function
  224.  
  225. Arguments.................    None
  226.  
  227. Return....................    Nothing
  228.  
  229. Comments/Example..........    This routine CLOSES the WPC compatable     
  230.                               document file - a document file that had been    
  231.                               previously opened by using the WPOpen() function. 
  232.                               By issuing a WPClose(), all text, document,      
  233.                               and graphic codes can no longer be written to    
  234.                               the document file.
  235.  
  236.                               Reminder:  Do Not issue a WPClose() directly     
  237.                               after a WPOpen() if you intend to add any  
  238.                               formatting, graphics or text commands. The       
  239.                               document file must remain open to insert text and
  240.                               formatting codes.  Only issue a WPClose() command
  241.                               directly after a WPOpen() when you intend to
  242.                               create a WPC document with nothing in it.
  243.  
  244.                               Clipper Example:
  245.                     
  246.                               filespec = "C:\WP51\DOCS\DOC00001.W51"
  247.                               If wpopen(filespec)
  248.                                     ?"Successfully created and opened document"
  249.                                     ...
  250.                                     wpclose()
  251.                               Else
  252.                                     ?"Unsuccessful"
  253.                               Endif
  254.  
  255.                               C Example:
  256.                     
  257.                               int fspecsiz;
  258.                               fspecsiz=25;
  259.                               char filespec[fspecsiz+1];
  260.                               filespec="C:\WP51\DOCS\DOC00001.W51";
  261.                               wpopen(filespec);
  262.                               ...
  263.  
  264.                               wpclose();
  265.  
  266. ----------------------------------------------------------------------------
  267. Text Formatting Functions                                         wpadd()
  268. ----------------------------------------------------------------------------
  269.  
  270. Function..................    wpadd(<arg1c>)
  271.  
  272. Description...............    Appends the text string specified in <arg1c>     
  273.                               to the document.
  274.  
  275. Arguments.................    <arg1c>=text string
  276.  
  277. Return....................    Nothing
  278.  
  279. Comments/Example..........    This routine appends the text string into the    
  280.                               opened WPC document.  This string can be a field 
  281.                               from a database - however it must be in character 
  282.                               format.
  283.  
  284.                               Clipper Example:
  285.  
  286.                               filespec = "C:\WP51\DOCS\DOC00001.W51"
  287.  
  288.                               If wpopen (filespec)
  289.                                     ?"Successfully created and opened document"
  290.                                     *-- Adds some text  to the document --*
  291.                                     wpadd("Please tell your friends ")
  292.                                     wpadd("that they should buy this product!")
  293.                                     ...
  294.                                     wpclose()
  295.                               Else
  296.                                     ?"Unsuccessful"
  297.                               Endif
  298.  
  299.  
  300.                               C Example:
  301.  
  302.                               int fspecsiz,bold,italic;
  303.                               fspecsiz=25;
  304.                               char filespec[fspecsiz+1];
  305.  
  306.                               filespec = "C:\WP51\DOCS\DOC00001.W51";
  307.  
  308.                               wpopen(filespec);
  309.                               /* Adds some text  to the document */;
  310.                               wpadd("Please tell your developer friends ");
  311.                               wpadd("that they should buy this product!");
  312.                               ...
  313.                               wpclose();
  314.  
  315.  
  316.  
  317. ----------------------------------------------------------------------------
  318. Text Formatting Functions                                         wpcntr()
  319. ----------------------------------------------------------------------------
  320.  
  321. Function..................    wpcntr()
  322.  
  323. Description...............    Centers the next text string specified to the
  324.                               document.
  325.  
  326. Arguments.................    None
  327.  
  328. Return....................    Nothing
  329.  
  330. Comments/Example..........    This routine centers the next text string into
  331.                               the opened WPC document.
  332.  
  333.  
  334.                               Clipper Example:
  335.  
  336.                               filespec = "C:\WP51\DOCS\DOC00001.W51"
  337.  
  338.                               If wpopen (filespec)
  339.                                     ?"Successfully created and opened document"
  340.                                     *Adds some centered text to the document*
  341.                                     wphrtn(1)
  342.                                     wpcntr()
  343.                                     wpadd("Centering this text")
  344.                                     wphrtn()
  345.                                     ...
  346.                                     wpclose()
  347.                               Else
  348.                                     ?"Unsuccessful"
  349.                               Endif
  350.  
  351.                               C Example:
  352.  
  353.                               int fspecsiz,bold,italic;
  354.                               fspecsiz=25;
  355.                               char filespec[fspecsiz+1];
  356.  
  357.                               filespec = "C:\WP51\DOCS\DOC00001.W51";
  358.  
  359.                               wpopen(filespec);
  360.                               /* Adds some centered text to the document */;
  361.                               wphrtn(1);
  362.                               wpcntr();
  363.                               wpadd("Centering this text");
  364.                               wphrtn(1);
  365.                               ...
  366.                               wpclose();
  367.  
  368.  
  369. -----------------------------------------------------------------------------
  370. Text Formatting Functions                                         wphrtn()
  371. -----------------------------------------------------------------------------
  372.  
  373. Function..................    wphrtn(<arg1n>)
  374.  
  375. Description...............    Appends a WPC Hard Return into the document      
  376.                               the number of times that is specified by 
  377.                               <arg1n>.
  378.  
  379. Arguments.................    <arg1n>=the number of times to insert a hard
  380.                               return
  381.  
  382. Return....................    Nothing
  383.  
  384. Comments/Example..........    This routine appends the WPC compatable hard
  385.                               return code into the document that was created
  386.                               and opened using the wpopen() function.
  387.  
  388.  
  389.                               Clipper Example:
  390.  
  391.                               filespec = "C:\WP51\DOCS\DOC00001.W51"
  392.  
  393.                               If wpopen (filespec)
  394.                                     ?"Successfully created and opened document"
  395.                                     *-Add 2 hard returns to the document-*
  396.                                     wphrtn(2)
  397.                                     ...
  398.                                     wpclose()
  399.                               Else
  400.                                     ?"Unsuccessful"
  401.                               Endif
  402.  
  403.  
  404.                               C Example:
  405.  
  406.                               int fspecsiz;
  407.                               fspecsiz=25;
  408.                               char filespec[fspecsiz+1];
  409.  
  410.                               filespec = "C:\WP51\DOCS\DOC00001.W51";
  411.  
  412.                               wpopen(filespec);
  413.                               /* Add 2 hard returns to the document */;
  414.                               wphrtn(2);
  415.                               ...
  416.                               wpclose();
  417.  
  418.  
  419.  
  420. -----------------------------------------------------------------------------
  421.                           FILES WE SUPPLY FOR LINKING
  422. -----------------------------------------------------------------------------
  423.  
  424.  
  425. CLP2WPC.OBJ       REQUIRED FOR ALL CLIPPER LINKING
  426. CLPSUP.OBJ        REQUIRED FOR ALL CLIPPER LINKING
  427.  
  428. BCC2WPCS.OBJ      BORLAND SMALL MODEL
  429. BCC2WPCM.OBJ      BORLAND MEDIUM MODEL
  430. BCC2WPCL.OBJ      BORLAND LARGE MODEL
  431.  
  432. MSC2WPCS.OBJ      MICROSOFT SMALL MODEL
  433. MSC2WPCM.OBJ      MICROSOFT MEDIUM MODEL
  434. MSC2WPCL.OBJ      MICROSOFT LARGE MODEL
  435.  
  436.  
  437. -----------------------------------------------------------------------------
  438.                                   Linking
  439. -----------------------------------------------------------------------------
  440.  
  441.  
  442.                           CLIPPER 87 BLINKER EXAMPLE
  443.  
  444. # wpclp000.LNK
  445. NOBELL
  446. BLINKER EXECUTABLE CLIPPER E0;F10;R25
  447. BLINKER INCREMENTAL OFF
  448. BLINKER MEMORY PACK 10
  449. OUTPUT wpclp000
  450. FILE wpclp000
  451. FILE clp2wpc
  452. FILE clpsup
  453. library \CLIPPER\EXTEND
  454. search \clipper\clipper
  455. search \clipper\overcl
  456.  
  457.  
  458.                       CLIPPER 87 MICROSOFT LINKER EXAMPLE
  459.  
  460.  
  461. LINK MYFILE+CLP2WPC+CLPSUP,MYFILE,,EXTEND+CLIPPER;
  462.  
  463.  
  464.                         MICROSOFT "C" v6.0 LINK EXAMPLE
  465.  
  466. LINK @MYFILE.LNK
  467.  
  468. This is myfile.lnk
  469.  
  470. myfile+           <- your obj file
  471. msc2wpcs          <- our interface routines
  472. myfile            <- your exe name
  473. ,                 <- default
  474. slibce;           <- microsoft small model library
  475.  
  476.  
  477.                                BORLAND C++ v2.0
  478.  
  479. Refer to your Borland manual on the Integrated Development Environment as that
  480. would be the perfered method.  If you need to link from the command line, the
  481. following example is for large model.
  482.  
  483. tlink c:\bC\LIB c0l MYFILE bcc2wpcl, MYFILE, nul,emu mathl cl   
  484.  
  485.  
  486. System Requirements
  487.  
  488. The minimum equipment requirements to run WP Document Interface Toolkit are: IBM
  489. PC XT, AT, PS/2 or compatible computer with a hard  disk, 512KB of RAM, MS/PC
  490. DOS 3.3 or later and, one of the following compilers:
  491.  
  492.       Clipper Summer '87 from Nantucket
  493.       Clipper 5.0 from Nantucket
  494.       Microsoft C (up through version 6.0)
  495.       Borland C,C++ (up through version 2.0)
  496.  
  497.  
  498. Installation
  499.  
  500. The WP Document Interface Toolkit is supplied on one 5.25 inch or one 3.5 inch
  501. diskette and consists of the following files:
  502.  
  503.       CLP2WPC.OBJ       
  504.       CLPSUP.OBJ........ Clipper Object Files
  505.  
  506.       MSC2WPC.OBJ....... Microsoft C Object File
  507.  
  508.       BCC2WPC.OBJ....... Borland C,C++ Object File
  509.  
  510.       MANUAL.DOC........ WP Document Interface Toolkit Manual
  511.  
  512.       READ.ME........... Notes on last minute changes
  513.  
  514. To install WP Document Interface Toolkit files, copy the appropriate files
  515. (depending on your type of compiler) to your designated library directory.
  516.  
  517. Software License Agreement
  518.  
  519. Software:         Refers to the toolkit files contained in
  520.                   the disk supplied as WP Document Interface
  521.                   Toolkit, together with  any updates
  522.                   subsequently provided by LumiNet Publishing
  523.                   Corporation.
  524.  
  525. Documentation:    Refers to the printed materials provided
  526.                   with this toolkit or later supplied by
  527.                   LumiNet Publishing Corporation.
  528.  
  529. Software Copies:  Refers to the actual copies of all or any
  530.                   portion of the toolkit and may include
  531.                   updates and backups.
  532.  
  533.  
  534. Allowable Uses:   WP Document Interface Toolkit is
  535.                   distributed as a shareware product.  This
  536.                   allows you to try the product prior to
  537.                   registering/purchasing your own copy.  
  538.  
  539.                   The shareware version of WP Document
  540.                   Interface Toolkit contains small model C
  541.                   Object files, as well as limited
  542.                   documentation covering available
  543.                   functionality.  
  544.  
  545.                   If you like this product, you should become
  546.                   a registered user!  To receive a complete
  547.                   set of documentation, large model C Object
  548.                   files,  free technical support, and updates
  549.                   as they become available, you must be a
  550.                   registered user.  
  551.  
  552.                   LumiNet Publishing Corporation agrees to
  553.                   provide the registered user a non-exclusive
  554.                   and non-transferable license to use the
  555.                   Software contained herein for an  
  556.                   unlimited duration.  These rights granted
  557.                   herein are limited to use of the Software,
  558.                   Documentation and Software Copies as
  559.                   defined within the Agreement. All rights
  560.                   not specifically granted in this Agreement
  561.                   are reserved by LumiNet Publishing
  562.                   Corporation.
  563.  
  564.                   The Licensed/registered user may use the
  565.                   Software in the following ways:
  566.  
  567.                   1.  Load the Software into RAM and use it
  568.                   on a single workstation or terminal;
  569.  
  570.                   2.  Install the Software onto a permanent
  571.                   storage device - a hard or fixed disk
  572.                   drive;
  573.  
  574.                   3.  Make copies of the Software for backup
  575.                   purposes only, and the Licensee must keep
  576.                   possession of them at all times.
  577.  
  578.                   The un-Licensed/non-registered user may
  579.                   freely use and distribute the Shareware
  580.                   version of the Software and Documentation.
  581.  
  582. Prohibited Uses:  Under any other circumstances attempt to
  583.                   rewrite, decompile, dis-assemble or
  584.                   reverse-engineer any of the Software or
  585.                   Software copies.
  586.  
  587.  
  588. Limitations:      You, the user, has limited rights to use 
  589.                   the Software, Documentation and Software
  590.                   Copies as expressly provided in this   
  591.                   license.  
  592.  
  593.                   LumiNet Publishing Corporation, retains
  594.                   title to all the Software, Software 
  595.                   Copies, and Documentation.  
  596.  
  597.                   The Licensed user agrees to protect the
  598.                   Software, Software   Copies, and
  599.                   Documentation, from unauthorized
  600.                   publication, use, reproduction or
  601.                   distribution.
  602.  
  603. Limited Warranty
  604.  
  605.       LumiNet Publishing Corporation warrants to the original Licensed
  606.       user that the magnetic media that this toolkit is distributed on is
  607.       free from defects in material and workmanship under normal use and
  608.       service, for a period of thirty (30) days from date of purchase as
  609.       contained in your receipt/invoice.   LumiNet Publishing
  610.       Corporation's entire liability and your exclusive remedy shall be
  611.       replacement of the defective disk,  provided the disk is returned to
  612.       LumiNet Publishing Corporation with a copy of your dated receipt,
  613.       invoice or serial number, name and address.
  614.  
  615.       LumiNet Publishing Corporation shall not be liable to the Licensee
  616.       or any other person for any special, consequential, indirect or ther
  617.       similar damages or claims including loss of profits, or any other
  618.       commercial damage caused or imagined to have been caused directly or
  619.       indirectly by the use of the Software.  LumiNet Publishing
  620.       Corporation specifically disclaims all other warranties, expressed
  621.       or implied.
  622.  
  623.       LumiNet Publishing Corporation makes no representations or
  624.       warranties with respect to the merchantability or fitness of the WP
  625.       Document Interface Toolkit for any particular purpose, business or 
  626.       application. Implied warranties of merchantability are expressly and
  627.       specifically disclaimed. In no event shall LumiNet Publishing
  628.       Corporation's liability for damages to you or any other person
  629.       exceed the price paid for the license to use the Software,
  630.       regardless of the form of any claim.
  631.  
  632.       Updates and Revisions
  633.  
  634.       LumiNet Publishing Corporation reserves the right to modify and/or
  635.       enhance WP Document Interface Toolkit and its documentation without 
  636.       obligation to notify any person or organization of such changes. 
  637.  
  638.  
  639.  
  640.  
  641.  
  642. Technical Support
  643.  
  644.       We offer free technical support in the U.S. as outlined below to
  645.       registered users of WP Document Interface Toolkit.
  646.  
  647.       Please complete and mail the enclosed registration card to ensure
  648.       you are entitled to technical support.
  649.  
  650.  
  651.       Electronic Mail
  652.  
  653.       LumiNet Publishing Corporation provides unlimited technical support
  654.       to registered users in the U.S. and Canada via an electronic
  655.       bulletin board service - CompuServ address #. 
  656.  
  657.       Suggestions for improvements are always welcome.
  658.  
  659.       Telephone
  660.  
  661.       You may contact us at (301) 622-9642 between the hours of 9:00AM and 
  662.       5:00PM Eastern Standard Time.
  663.  
  664.       Mail
  665.  
  666.       Our address is:
  667.       
  668.       LumiNet Publishing Corporation
  669.       14832 Fireside Drive, Suite #100
  670.       Silver Spring, MD  20904
  671.       USA
  672.  
  673.  
  674.  ┌────────────────────────────────────────────────────────────────────────┐
  675.  │            WP Document Interface Toolkit ORDER FORM                    │
  676.  └────────────────────────────────────────────────────────────────────────┘
  677.  
  678.            Yes ! I want Seamless interfaces between C/Clipper and 
  679.                               WordPerfect !
  680.  
  681.              ┌──────────────────────────────────────────────────┐
  682.              │   Name:_______________________________________   │
  683.              │                                                  │
  684.              │   Company:____________________________________   │
  685.              │                                                  │
  686.              │   Street:_____________________________________   │
  687.              │                                                  │
  688.              │   City:_______________________________________   │
  689.              │                                                  │
  690.              │   State:______________  Zip:__________________   │
  691.              │                                                  │
  692.              │   Country:____________________________________   │
  693.              │                                                  │
  694.              │   Phone:______________________________________   │
  695.              │                                                  │
  696.              │   FAX:________________________________________   │
  697.              │                                                  │
  698. ┌─────────────────────────────────────────────────────────────────────────┐
  699. │  Please ship me _________ copies of WP Document Interface               │
  700. │                                     Toolkit @ $55.00/each               │
  701. │                                                         _______________ │
  702. │                                                                         │
  703. │  Maryland Residents Only - add Sales Tax @ 4.5%         --------------- │
  704. │                                                                         │
  705. │  U.S. Shipping ONLY :                                                   │
  706. │                                                                         │
  707. │       Federal Express 2nd Day Air  @ $15.00 (US)        _______________ │
  708. │                                                                         │
  709. │       Federal Express Next Day Air @ $25.00 (US)        _______________ │
  710. │                                                                         │
  711. │       Regular Postal Service       @ $ 3.00 (US)        --------------- │
  712. ├────────────────────────────────────────┐                                │
  713. │  Disk Size:  3.5"_____     5.25"_____  │        Total : _______________ │
  714. └────────────────────────────────────────┴────────────────────────────────┘
  715.  
  716.                       Please Ship COD _____ (in the US only)
  717.                   or
  718.                       Check Enclosed  _____
  719.  
  720.                       Amount : US $________   
  721.  
  722.  
  723.  
  724. Sorry no Credit cards accepted at this time.
  725.  
  726.  
  727.  
  728. Please mail orders to : LumiNet Publishing Corporation
  729.                         14832 Fireside Drive, Suite 100
  730.                         Silver Spring, MD
  731.                         20905     
  732.  
  733.                         (301) 384-6375            Sales
  734.                         (301) 622-9642            Support
  735.  
  736.                         75140,1176                CompuServe Address
  737.  
  738.  
  739. If you need further information please call us.
  740.