Componentes.Terceros.jvcl/official/3.36/examples/JvDesktopAlert/JvDesktopAlertDemo.dpr
2009-02-27 12:23:32 +00:00

14 lines
280 B
ObjectPascal

program JvDesktopAlertDemo;
uses
Forms,
JvDesktopAlertDemoForm in 'JvDesktopAlertDemoForm.pas' {JvDesktopAlertDemoFrm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TJvDesktopAlertDemoFrm, JvDesktopAlertDemoFrm);
Application.Run;
end.