home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / SPREAD16.ZIP / readme.txt < prev    next >
Text File  |  1997-02-20  |  320b  |  16 lines

  1. Notes:
  2. ------
  3.  
  4.  
  5. When setting cell contents in code use the setformula
  6. method instead of:
  7.  
  8. spread1.cells[1,1] := 'somedata';
  9.  
  10. do this
  11.  
  12. spread1.setformula(1,1,'somedata');
  13.  
  14. Using spread1.cells[1,1,'somedata'] will result
  15. in the cell being blanked when the cell is entered
  16. at runtime and subsequently exited.