Componentes.Terceros.jvcl/official/3.32/examples/JvControls/ControlsExample.dpr

14 lines
287 B
ObjectPascal

program ControlsExample;
uses
Forms,
ControlsExampleMainFormU in 'ControlsExampleMainFormU.pas' {ControlsExampleMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TControlsExampleMainForm, ControlsExampleMainForm);
Application.Run;
end.