home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / basic / lb09c.zip / INVOICE.BAS < prev    next >
BASIC Source File  |  1992-04-12  |  667b  |  27 lines

  1.  
  2.  
  3.     ' open a spreadsheet for invoice entry
  4.  
  5.     open "Invoice Form" for spreadsheet as #1
  6.  
  7.     print #1, "indirect"
  8.     print #1, "select B5"
  9.     print #1, "format B fixed"
  10.     print #1, "cell A1 'Enter a list of 5 numbers below to be totalled:"
  11.     print #1, "user B5"
  12.     print #1, "user B6"
  13.     print #1, "user B7"
  14.     print #1, "user B8"
  15.     print #1, "user B9"
  16.     print #1, "cell B10 '==========="
  17.     print #1, "cell A11 'Total"
  18.     print #1, "cell B11 b5 b6 b7 b8 b9 sum"
  19.     print #1, "cell B12 '==========="
  20.     print #1, "cell A13 '+ 5% Tax"
  21.     print #1, "cell B13 b11 * 1.05"
  22.     print #1, "flush"
  23.  
  24.     input r$
  25.  
  26.     close #1
  27.