But now (5.10.22) in file properties parameter meaning document creation date is 2000.01.01 15:00 ;( windows explorer shows this time (from parameters) as filedate.
and also statements like
XLS.UserName := 'test user';
XLS.Password := '111';
not makes any effect on resulting file ;(
Search found 4 matches
- Mon Jun 03, 2013 10:00 am
- Forum: XLSReadWritwII 6
- Topic: Changing the author in the file properties
- Replies: 3
- Views: 2690
- Fri Jul 06, 2007 10:01 am
- Forum: XLSReadWriteII 3/4/5
- Topic: may be small mistakes? in XLS RW 3 (My fixes below)
- Replies: 3
- Views: 3977
Another yet
In source function TCellFormat.FormatIsDateTime: boolean; begin Result := FXF.NumFmtIndex in [$0E,$14]; end; may must be? function TCellFormat.FormatIsDateTime: boolean; begin Result := FXF.NumFmtIndex in [$0E..$14]; end; or even function TCellFormat.FormatIsDateTime: boolean; begin Result := FXF.Nu...
- Fri Jul 06, 2007 9:59 am
- Forum: XLSReadWriteII 3/4/5
- Topic: may be small mistakes? in XLS RW 3 (My fixes below)
- Replies: 3
- Views: 3977
- Tue May 29, 2007 2:02 pm
- Forum: XLSReadWriteII 3/4/5
- Topic: may be small mistakes? in XLS RW 3 (My fixes below)
- Replies: 3
- Views: 3977
may be small mistakes? in XLS RW 3 (My fixes below)
1) Creating XLS with current regional settings, but not 1200 codepage procedure TRecordStorageGlobals.SetDefaultData; begin ..... {$IFDEF VVC} PCODEPAGE := AddDefRecWord(BIFFRECID_CODEPAGE, GetACP()); {$ELSE} PCODEPAGE := AddDefRecWord(BIFFRECID_CODEPAGE,$04B0); {$ENDIF} ...... 2) Bad data when writ...