Componentes.Terceros.jvcl/internal/3.36/1/examples/JvNTEventLog/EventViewer.dpr
2009-03-04 12:31:55 +00:00

15 lines
270 B
ObjectPascal

program EventViewer;
uses
Forms,
JvNTEventLogMainFormU in 'JvNTEventLogMainFormU.pas' {JvNTEventLogMainForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TJvNTEventLogMainForm, JvNTEventLogMainForm);
Application.Run;
end.