Technisch artikel

HotXLS Component: Office-free workbook automation in Delphi

Maak, bewerk, inspecteer, bereken en exporteer Excel-workbooks rechtstreeks vanuit Delphi- of C++Builder-code. HotXLS is een native Object Pascal-spreadsheetbibliotheek met broncode voor XLS- en XLSX-workflows, ontworpen voor desktoptools, batchtaken, rapportagesystemen en server-side documentgeneratie zonder Microsoft Excel-automatisering.

Dit artikel is bedoeld voor teams replacing Excel COM automation in services, batch tools, installers, or desktop utilities. Het behandelt Office-free workbook automation als productiegerichte documentengineering, niet als een losse componentaanroep.

Het praktische risico is dat Excel automation is often hidden infrastructure; replacing it requires explicit policies for calculation, templates, fonts, formats, and deployment. Daarom heeft de workflow een geschreven contract, observeerbare diagnose en representatieve regressiebestanden nodig.

Architectuurbeslissingen

Remove desktop Office from the runtime contract. supported input and output formats such as XLS, XLSX, ODS, CSV, and HTML / template ownership, calculation expectations, and formatting policy

  • supported input and output formats such as XLS, XLSX, ODS, CSV, and HTML
  • template ownership, calculation expectations, and formatting policy
  • service account permissions, file locking, concurrency, and temporary storage
  • verification steps used instead of opening Excel during generation

Implementatiepad

Build workbook output as application logic. The order below keeps the workflow reviewable for Delphi and C++Builder teams.

  1. inventory existing COM automation behavior before replacing it
  2. move workbook generation into a service layer with explicit profiles
  3. load templates, fill data, calculate, validate, and save without launching Excel
  4. run output checks with workbook-level diagnostics and representative files
  5. deploy with file-system and service permissions tested under the real account

Validatiebewijs

Automation evidence for deployment. Keep these fields with the output or support record.

  • automation profile, template version, input format, output format, and calculation mode
  • service identity, output path, temporary storage, concurrency level, and elapsed time
  • warnings for unsupported Excel automation behaviors that were not replicated
  • open or validation result in target downstream applications

No Excel process means fewer surprises, not fewer decisions

Office-free automation avoids desktop session, COM, and installed Office dependencies. The application still needs to own workbook formats, calculation strategy, file locking, templates, and output verification.

Implementatienotities voor productie

Behandel HotXLS Component: Office-free workbook automation in Delphi als een expliciet servicecontract rond de HotXLS-aanroepen, met gescheiden invoercontrole, werkmapopbouw, uitvoercontrole en supportbewijs

  • Leg gegevensbron, celbereiken en uitvoerformaat vast voordat de werkmap wordt gemaakt
  • Log rijenaantal, bladen, waarschuwingen en uitvoerpad in controleerbaar supportbewijs
  • Plaats applicatiespecifieke details in testbare helpers in plaats van UI-events
  • Open of inspecteer het opgeslagen bestand voordat het naar een ander systeem of klant gaat

Foutscenario's om te oefenen

  • Een geslaagde SaveAs bewijst niet dat het zakelijke contract klopt
  • Lettertypen, rechten en regionale instellingen kunnen verschillen tussen server en ontwikkelmachine
  • Logs mogen geen wachtwoorden, klantgegevens of interne links onthullen

Uitgebreid Delphi-voorbeeld

Het volgende Delphi-voorbeeld toont een praktische servicegrens voor dit onderwerp en houdt beleid, logging en validatie testbaar gescheiden

procedure BuildNightlyWorkbookWithoutExcel(const OutputFile: string; const ReportDate: TDate);
var
  Wb: TXLSXWorkbook;
  Summary: IXLSWorksheet;
  Detail: IXLSWorksheet;
begin
  Wb := TXLSXWorkbook.Create;
  try
    Summary := Wb.Sheets[0];
    Summary.Name := 'Summary';
    Detail := AddWorksheet(Wb, 'Detail');

    WriteReportHeader(Summary, 'Nightly Operations', ReportDate);
    WriteSummaryMetrics(Summary, LoadSummaryMetrics(ReportDate));
    WriteDetailRows(Detail, LoadDetailRows(ReportDate));
    LinkSummaryToDetail(Summary, Detail);
    Wb.Calculate;

    ValidateServerEnvironment(['fonts', 'temp-path', 'write-access']);
    WriteAutomationAudit(Wb, 'no-excel-automation', ReportDate);

    if Wb.SaveAs(OutputFile) <> 1 then
      RaiseWorkbookSaveError(OutputFile);
  finally
    Wb.Free;
  end;
end;

Productiechecklist

  • Run the workflow on an empty workbook, a normal customer workbook, and a worst-case workbook
  • Open the output with the target spreadsheet application or downstream importer
  • Log product version, template version, profile, row count, output path, elapsed time, and warning count
  • Keep passwords, temporary files, customer data, and support bundles under explicit retention rules
  • Add regression workbooks when a customer file exposes a new edge case

Product documentation

HotXLS Component