home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / c / carr10.zip / CARRIER.DOC < prev    next >
Text File  |  1993-01-07  |  5KB  |  135 lines

  1. ===============================================================================
  2. ==========================                         ============================
  3. ==========================         CARRIER         ============================
  4. ==========================                         ============================
  5. ===============================================================================
  6.  
  7.  
  8.  
  9.  
  10.                          Carrier is Copyright (C) 1993
  11.  
  12.                                       by
  13.  
  14.          Pinnacle Software, CP 386 Mount Royal, Quebec Canada  H3P 3C6
  15.          U.S. Office: Box 714 Airport Road, Swanton, Vermont 05488 USA
  16.  
  17.          Support Line (514) 345-9578  -- Free Files BBS (514) 345-8654
  18.                       
  19.  
  20.          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22.  
  23.          This is a SHAREWARE product.  That means we would like you to
  24.          pass around unregistered copies to other people.  If you have
  25.          a modem,  please upload it to your  favourite  bulletin board
  26.          system,  or give a copy to a friend  who you think might need
  27.          a program like this.   Shareware means sharing!   Pass it on!
  28.     
  29.                       
  30.          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  31.  
  32.                                         
  33.                      Design and coding: Timothy Campbell
  34.  
  35.                              Marketing: James Ludwick
  36.  
  37.                          Documentation: Natasha Mirage
  38.  
  39.                           Distribution: Kevin Beck
  40.  
  41.                       Support services: L. Wilson
  42.                                         Z. Krome
  43.                                         P. Katt
  44.  
  45.  
  46.  
  47.  
  48. ===============================================================================
  49. DESCRIPTION
  50. ===============================================================================
  51.  
  52.  
  53. "Carrier" is a simple utility for detecting the modem carrier (and setting the
  54. DOS ERRORLEVEL accordingly) for COM1 to COM4.
  55.  
  56. You can get a full explanation, by entering CARRIER  at the DOS prompt.  It
  57. displays the following screen:
  58.  
  59.  
  60.           Program:    Carrier
  61.           Copyright:  (C) 1993 by Pinnacle Software
  62.  
  63.           Version:    1.00A (93-01-01-CA)
  64.           Support:    Dial 514-345-9578
  65.  
  66.           Purpose:    Detects carrier on given port
  67.                       COM1 to COM4 are supported explicitly
  68.                       Other ports are supported by decimal address
  69.  
  70.           Format:     CARRIER port or address
  71.           Examples:   CARRIER 1     (i.e. COM1)
  72.                       CARRIER 1016  (corresponds to COM1)
  73.  
  74.           Defaults:   None
  75.  
  76.           Returns:    255 on error or this help screen
  77.                       0   if no carrier is present
  78.                       1   if a carrier is detected
  79.  
  80.  
  81. Here is a sample batch file to test the carrier on COM1:
  82.  
  83.  
  84.   @ECHO OFF
  85.   CARRIER 1
  86.   IF ERRORLEVEL 255 GOTO QUIT
  87.   IF ERRORLEVEL 1 GOTO GOTCARR
  88.   ECHO No carrier was detected!
  89.   GOTO QUIT
  90.   :GOTCARR
  91.   ECHO A carrier was detected!
  92.   :QUIT
  93.  
  94.  
  95. Please note that as per DOS batch programming requirements, you MUST test the
  96. higher errorlevels first -- see your DOS manual's explanation of IF ERRORLEVEL
  97. for details.
  98.  
  99.  
  100.  
  101. ===============================================================================
  102. SUPPORT AND REGISTRATION
  103. ===============================================================================
  104.  
  105.  
  106. You can contact us at one of the following addresses:
  107.  
  108.   Voice line:   514-345-9578
  109.   CompuServe:   70154,1577
  110.   GEnie:        T.CAMPBELL11
  111.   Support BBS:  514-345-8654 (9600 bps V32)
  112.   Internet:     70154.1577@compuserve.com
  113.   Head Office:  Pinnacle Software, CP 386, Mont Royal, Quebec, Canada H3P 3C6
  114.   U.S. Office:  Pinnacle Software, Box 714 Airport Rd, Swanton, Vermont 05488
  115.  
  116.  
  117. When you register Carrier, you get the following benefits:
  118.  
  119.   - Registration reminder screen is removed.
  120.   - You get the latest version.
  121.   - You get bonus freeware and shareware.
  122.   - Up to 30 minutes of voice support.
  123.   - Privileged access to support BBS.
  124.   - New shareware copies can be registered (free) for 2 years.
  125.  
  126. You can register through any of the addresses given above.  If you register
  127. via phone or email, we will give you your unlocking code IMMEDIATELY so you
  128. can use Carrier without having to look at the registration reminder screen.
  129. Requesting an unlocking code in this way is considered a "Purchase Order", and
  130. thus you will be required to submit the registration fee ($10).  We will ship
  131. the remainder of the order (bonus software, etc.) when we receive your payment.
  132.  
  133. For a list of Pinnacle's other products, see the file AMAZE.DOC.  For an order
  134. form to register Carrier by mail, see the file CARRIER.FRM.
  135.