home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol12n08.zip / SUMQTY.SC < prev    next >
Text File  |  1993-04-02  |  475b  |  15 lines

  1. ;-------------------------------------------------------------
  2. ;Sumqty.sc
  3. ; Calculate and display the sum of the values in the
  4. ; current column
  5. ;-------------------------------------------------------------
  6. X = Table()                 ; Get table name
  7. Y = Field()                 ; Get field name
  8. Message Csum(X, Y)          ; Display result
  9. Sleep 2500                  ; Sleep for 2.5 seconds
  10.  
  11. ; Place the following in your Init.sc
  12. ; SETKEY -31 PLAY Sumqty
  13. ;
  14.  
  15.