Componentes.Terceros.jcl/official/1.100/examples/JvSystemPopup/JvSystemPopupProj.dpr

14 lines
279 B
ObjectPascal

program JvSystemPopupProj;
uses
Forms,
JvSystemPopupMainFormU in 'JvSystemPopupMainFormU.pas' {JvSystemPopupMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TJvSystemPopupMainForm, JvSystemPopupMainForm);
Application.Run;
end.