Componentes.Terceros.jcl/official/1.100/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.