Hallo,
ich versuche grad das Selbe umzusetzen, habe aber das Problem,
daß er im
DLL Project Application nicht kennt.
mein Code sieht so aus:
Delphi-Quellcode:
library PDFDocuments;
uses
SysUtils,
Classes,
Dialogs,
Windows,
UPDFReport in '..\Source\UPDFReport.pas' {PDFDataModule: TDataModule},
UPageTimeTable in '..\Source\UPageTimeTable.pas' {frmTimeTable},
UFPageBill in '..\Source\UFPageBill.pas' {frmFirstPage},
UDocument in '..\Source\UDocument.pas';
{$R *.res}
Procedure WritePDF();stdcall;
var Form: TfrmFirstPage;
begin
Form := TfrmFirstPage.Create(Application);
Form.Show;
form.Free;
end;
exports
WritePDF;
begin
end.
Thx,
ALexander