git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
15 lines
315 B
ObjectPascal
15 lines
315 B
ObjectPascal
program prjControls;
|
|
|
|
uses
|
|
Forms,
|
|
JvFooterAndGroupHeaderDemoForm in 'JvFooterAndGroupHeaderDemoForm.pas' {JvFooterAndGroupHeaderDemoFrm};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TJvFooterAndGroupHeaderDemoFrm, JvFooterAndGroupHeaderDemoFrm);
|
|
Application.Run;
|
|
end.
|
|
|