Einzelnen Beitrag anzeigen

Benutzerbild von Bernhard Geyer
Bernhard Geyer

Registriert seit: 13. Aug 2002
17.195 Beiträge
 
Delphi 10.4 Sydney
 
#10

Re: Mein Programm gibt erzeugtes xls - File nicht frei

  Alt 16. Okt 2005, 10:18
Zitat von Eichhoernchen:
...

Und irgendwie verstehe ich den Compiler^^:

Delphi-Quellcode:
const
  CXlsBof : array[0..5] of Word = ($809, 8, 00, $10, 1, 0);
  CXlsEof : array[0..1] of Word = ($0A, 00);
  CXlsLabel : array[0..5] of Word = ($204, 0, 0, 0, 0, 0);
  CXlsNumber : array[0..4] of Word = ($203, 14, 0, 0, 0);
  CXlsRk : array[0..4] of Word = ($27E, 10, 0, 0, 0);

...
CXlsRk[2] := Row;
du hast da ne Konstante deklariert aber willst den Wert ändern, ersetz mal const durch var!
Das obige Konstrukt geht auch wenn die Compiler-Option "Zuweisbare typisierte Konstanten" gesetzt wurde.
Windows Vista - Eine neue Erfahrung in Fehlern.
  Mit Zitat antworten Zitat