git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.FastReport@13 475b051d-3a53-6940-addd-820bf0cfe0d7
14 lines
206 B
Plaintext
14 lines
206 B
Plaintext
program CallDLL;
|
|
|
|
uses
|
|
Forms,
|
|
TestDLL in 'TestDLL.pas' {frmCallDLL};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmCallDLL, frmCallDLL);
|
|
Application.Run;
|
|
end.
|