Registriert seit: 26. Aug 2004
Ort: Nebel auf Amrum
3.154 Beiträge
Delphi 7 Enterprise
|
Re: Excel Felder aus Datenbank belegen
23. Aug 2006, 22:11
Hallo AndiS75,
versuch es doch mal so...
Delphi-Quellcode:
var ActiveBook:_WorkBook;
Excel:TExcelApplication;
Dateiname:string;
flcid:integer;
begin
flcid:=Windows.GetUserDefaultLCID;
ActiveBook:=Excel.Workbooks.Open(
Dateiname,
emptyParam, emptyParam, emptyParam,
emptyParam, emptyParam, emptyParam,
emptyParam, emptyParam, emptyParam,
emptyParam, emptyParam, emptyParam, flcid
);
end;
Je nach Excelversion kann die Anzahl der Parameter etwas variieren. emptyParam aus der Unit Variants ist dann dein Freund.
Gruss
Thorsten
|
|
Zitat
|