Thema
:
Delphi
Ungültiger Variant-Operation?
Einzelnen Beitrag anzeigen
shmia
Registriert seit: 2. Mär 2004
5.508 Beiträge
Delphi 5 Professional
#
2
Re: Ungültiger Variant-Operation?
16. Apr 2004, 16:37
markieren
Delphi-Quellcode:
for
i:=15
to
43
do
begin
if
ExcelApp.Range['
B
'+IntToStr(i), '
B
'+IntToStr(i)].Value = FormatDateTime('
dd.mm.yyyy
', now)
then
begin
ExcelApp.Range['
G
'+IntToStr(i), '
G
'+IntToStr(i)].Value :=FormatDateTime('
hh:nn
', Time);
// Falsch: die Schleife arbeitet weiter und du machst Excel zu
ExcelApp.Save;
ExcelApp.Quit;
ExcelApp := Unassigned;
// <=== !!!
end
;
Andreas
Zitat
shmia
Öffentliches Profil ansehen
Mehr Beiträge von shmia finden