home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
SPREAD16.ZIP
/
readme.txt
< prev
next >
Wrap
Text File
|
1997-02-20
|
320b
|
16 lines
Notes:
------
When setting cell contents in code use the setformula
method instead of:
spread1.cells[1,1] := 'somedata';
do this
spread1.setformula(1,1,'somedata');
Using spread1.cells[1,1,'somedata'] will result
in the cell being blanked when the cell is entered
at runtime and subsequently exited.