Einzelnen Beitrag anzeigen

GHorn

Registriert seit: 24. Mär 2009
Ort: NRW
124 Beiträge
 
#2

Re: nach Excel-Export, Datei in NEUEM Excel öffnen

  Alt 22. Jul 2009, 13:30
Delphi-Quellcode:
  try
    XLApp := GetActiveOleObject('Excel.Application');
  except
    XLApp := CreateOleObject('Excel.Application');
  end ;
  // Excel verstecken
  XLApp.Visible := False ;
  // Open the existing Workbook:
  XLApp.Workbooks.Open(sXlsFile); // Excel-Datei incl. Pfad
  ...
  ...
  ...
  XLApp.Visible := True; // Schließen und Speichern direkt in Excel

Gerald
  Mit Zitat antworten Zitat