home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 August / Chip_1999-08_cd.bin / sharewar / wscmclib / EXCEL.TXT < prev    next >
Text File  |  1999-06-01  |  1KB  |  37 lines

  1. *** How To Build EXCEL 5 Example Program ***
  2.  
  3. This test file will describe the steps necessary for building an EXCEL
  4. spreadsheet which accesses the serial port. Refer to VBA32.TXT for 32-bit
  5. EXCEL (EXCEL 97 and later).
  6.  
  7.  (1) Start EXCEL.
  8.  (2) Choose INSERT, the MACROS, then MODULE.
  9.  (3) Choose INSERT, FILE, and then select WSC16.BAS from the
  10.      WSC4VB archive.
  11.  (4) Move the cursor to the bottom of the file.
  12.  (5) Choose INSERT, FILE, and then select MODULE.BAS.
  13.  (6) Change the port (specified in MODULE.BAS) if necessary.
  14.  (7) Tab back to sheet 1.
  15.  (8) Move to cell A1, double click, then type  =OpenPort()
  16.  (9) Move to cell A2, double click, then type  =PutByte(B2)
  17. (10) Move to cell B2, double click, then type  13 (carriage return)
  18. (11) Move to cell A3, double click, then type  =GetByte()
  19. (12) Move to cell A4, double click, then type  =ClosePort()
  20. (13) Save the completed spreadsheet as EXCEL16.XLS.
  21. (14) Test the spreadsheet.
  22.      [a] Open the serial port by executing cell A1. The Shareware Banner should
  23.          appear, and a value of 0 returned.
  24.      [b] Send a byte to the serial port by putting their ascii value (65 for
  25.          "A", etc.) in cell B2, and executing cell A2.
  26.      [c] Read bytes from the serial port by executing cell A3.
  27.      [d] Close the port by executing cell A4.
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.