Componentes.Terceros.jvcl/official/3.32/examples/JvDesktopAlert/JvDesktopAlertDemo.dpr

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.