Excel çalışma kitaplarını doğrudan Delphi veya C++Builder kodundan oluşturun, düzenleyin, inceleyin, hesaplayın ve dışa aktarın. HotXLS; Microsoft Excel otomasyonu olmadan masaüstü araçları, batch işleri, raporlama sistemleri ve sunucu tarafı belge üretimi için tasarlanmış, XLS ve XLSX iş akışlarına yönelik kaynak kodlu yerel bir Object Pascal kütüphanesidir.
Bu yazı developers delivering workbooks that users review, print, and partly edit under controlled rules için hazırlanmıştır. protection, page setup, and printing konusunu tek bir bileşen çağrısı olarak değil, üretim düzeyinde belge mühendisliği olarak ele alır.
Pratik risk şudur: sheet protection and print settings are easy to apply but hard to support when editable ranges, headers, page breaks, scaling, and printer assumptions are undocumented. Bu nedenle akışın yazılı sözleşmeye, gözlemlenebilir tanılara ve gerçekçi regresyon dosyalarına ihtiyacı vardır.
Mimari kararlar
Define edit and print intent together. locked cells, editable ranges, sheet protection password, and allowed user actions / print area, repeat rows and columns, headers, footers, margins, scaling, and orientation
- locked cells, editable ranges, sheet protection password, and allowed user actions
- print area, repeat rows and columns, headers, footers, margins, scaling, and orientation
- manual versus automatic page breaks and how generated rows affect them
- whether protection is advisory workflow control or part of a stronger governance model
Uygulama akışı
Apply protection after layout is final. The order below keeps the workflow reviewable for Delphi and C++Builder teams.
- finish data generation and layout expansion before enabling protection
- mark editable ranges and validate that formulas and headers remain locked
- apply page setup, print titles, margins, scaling, and page breaks
- open print preview in the target workbook application
- record the protection and print profile used for support
Doğrulama kanıtı
Workbook evidence for print and protection disputes. Keep these fields with the output or support record.
- protected sheets, editable ranges, allowed actions, and password policy identifier
- print area, repeat titles, margins, orientation, scaling, and page count
- manual page breaks and dynamic row expansion results
- preview or printed-output verification for representative data volumes
Protection is workflow guidance, not security alone
Workbook protection helps guide user edits, while page setup controls physical output. They interact: locked cells, print areas, headers, scaling, and page breaks should all match the business document contract.
Üretim uygulama notları
HotXLS: protection, page setup, and printing in Delphi konusunu HotXLS çağrılarının çevresinde açık bir servis sözleşmesi olarak ele alın; giriş doğrulama, çalışma kitabı yazma, çıktı denetimi ve destek kanıtını ayırın
- Çalışma kitabını oluşturmadan önce veri kaynağını, hücre aralıklarını ve çıktı biçimini belirleyin
- Satır sayısı, sayfalar, uyarılar ve çıktı yolunu incelenebilir destek kaydına yazın
- Uygulamaya özel ayrıntıları UI olaylarına değil test edilebilir helper'lara yerleştirin
- Dosyayı başka sisteme veya müşteriye vermeden önce kaydedilmiş çıktıyı yeniden açın veya inceleyin
Prova edilmesi gereken hata kipleri
- Başarılı SaveAs çağrısı iş sözleşmesinin doğru kaldığını kanıtlamaz
- Sunucu ile geliştirici makinesinde yazı tipleri, izinler ve bölgesel ayarlar farklı olabilir
- Loglar parola, müşteri verisi veya iç bağlantı açığa çıkarmamalıdır
Ayrıntılı Delphi örneği
Aşağıdaki Delphi örneği bu konu için pratik bir servis sınırı gösterir ve politika, günlükleme ve doğrulamayı test edilebilir katmanda tutar
procedure BuildProtectedPrintWorkbook(const OutputFile: string; const Rows: TArray<TPrintRow>);
var
Wb: TXLSWorkbook;
Sh: IXLSWorksheet;
RowIndex: Integer;
Row: TPrintRow;
begin
Wb := TXLSWorkbook.Create;
try
Sh := Wb.Sheets[1];
Sh.Name := 'Print Pack';
WriteHeaderRow(Sh, ['Item', 'Owner', 'Due', 'Amount']);
RowIndex := 2;
for Row in Rows do
begin
Sh.Range['A' + IntToStr(RowIndex)].Value := Row.ItemName;
Sh.Range['B' + IntToStr(RowIndex)].Value := Row.Owner;
Sh.Range['C' + IntToStr(RowIndex)].Value := Row.DueDate;
Sh.Range['D' + IntToStr(RowIndex)].Value := Row.Amount;
Inc(RowIndex);
end;
Sh.Range['A1:D1'].ApplyBuiltinStyle(xbsTitle);
ConfigurePrintArea(Sh, 'A1:D' + IntToStr(RowIndex - 1));
ConfigurePageSetup(Sh, poLandscape, psFitToWidth);
LockFormulaCellsOnly(Sh);
ProtectWorksheetForReview(Sh, 'review-password');
if Wb.SaveAs(OutputFile) <> 1 then
RaiseWorkbookSaveError(OutputFile);
finally
Wb.Free;
end;
end;
Üretim kontrol listesi
- 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