Componentes.Terceros.jcl/official/2.1.1/examples/windows/debug/reportconverter/ExceptionReportConverter.dpr
2010-01-18 16:51:36 +00:00

19 lines
465 B
ObjectPascal

program ExceptionReportConverter;
{$I jcl.inc}
uses
Forms,
formConverter in 'formConverter.pas' {frmConverter},
ExceptDlgMail in '..\..\..\..\EXPERTS\DEBUG\DIALOG\EXCEPTDLGMAIL.pas' {ExceptionDialogMail};
{$R *.res}
{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}
begin
Application.Initialize;
Application.Title := 'Exception Report Converter';
Application.CreateForm(TfrmConverter, frmConverter);
Application.Run;
end.