Crie, edite, inspecione, calcule e exporte pastas Excel diretamente de codigo Delphi ou C++Builder. HotXLS e uma biblioteca nativa Object Pascal para XLS e XLSX, projetada para ferramentas desktop, lotes, relatorios e geracao de documentos sem automacao do Microsoft Excel.
Este artigo é para teams replacing Excel COM automation in services, batch tools, installers, or desktop utilities. Ele trata Office-free workbook automation como engenharia documental de produção, não como uma chamada isolada de componente.
O risco prático é que Excel automation is often hidden infrastructure; replacing it requires explicit policies for calculation, templates, fonts, formats, and deployment. Por isso o fluxo precisa de contrato escrito, diagnósticos observáveis e arquivos de regressão representativos.
Decisões de arquitetura
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
Fluxo de implementação
Build workbook output as application logic. The order below keeps the workflow reviewable for Delphi and C++Builder teams.
- inventory existing COM automation behavior before replacing it
- move workbook generation into a service layer with explicit profiles
- load templates, fill data, calculate, validate, and save without launching Excel
- run output checks with workbook-level diagnostics and representative files
- deploy with file-system and service permissions tested under the real account
Evidências de validação
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.
Notas de implementação para produção
Trate HotXLS Component: Office-free workbook automation in Delphi como um contrato de serviço explícito em torno das chamadas HotXLS, separando validação de entrada, gravação da pasta de trabalho, verificação da saída e evidências para suporte
- Defina fonte de dados, intervalos de células e formato de saída antes de criar a pasta de trabalho
- Registre linhas, planilhas, avisos e caminho de saída em evidências revisáveis
- Encapsule detalhes da aplicação em helpers testáveis, não em eventos de interface
- Reabra ou inspecione o arquivo salvo antes de entregá-lo a outro sistema ou ao cliente
Falhas que devem ser ensaiadas
- SaveAs com sucesso não prova que o contrato de negócio continua correto
- Fontes, permissões e configurações regionais podem variar entre servidor e máquina de desenvolvimento
- Logs não devem expor senhas, dados de clientes nem links internos
Exemplo Delphi detalhado
O exemplo Delphi a seguir mostra uma fronteira de serviço prática para este tema, mantendo política, logs e validação em uma camada testável
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;
Checklist de produção
- 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