Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
43.189 Beiträge
 
Delphi 12 Athens
 
#8

AW: Excel Automation langsam ohne Internetzugang

  Alt 28. Mär 2023, 20:50
Excel-Dateien (*.xlsx) sind inzwischen eine ZIP mit vielen XML-Dateien darin
und diese XML benutzen externe Schemata.

Code:
[Content_Types].xml
    <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">

_rels\.rels
    <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
    <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
    <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
    <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml"/>

docProps\app.xml
    <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
                xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">

docProps\core.xml
    <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
                       xmlns:dc="http://purl.org/dc/elements/1.1/"
                       xmlns:dcterms="http://purl.org/dc/terms/"
                       xmlns:dcmitype="http://purl.org/dc/dcmitype/"
                       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

.
.
.
Kann auch sein, dass gewisse Schemata nachgeladen werden, wenn man gewisse Funktionalitäten verwendet.

Du könntest auch mal nachsehn, was für Netzwerkverbindungen aufgehn, wenn du das machst, was du machen willst.
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests

Geändert von himitsu (28. Mär 2023 um 20:56 Uhr)
  Mit Zitat antworten Zitat