git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@19 7f62d464-2af8-f54e-996c-e91b33f51cbe
15 lines
241 B
ObjectPascal
15 lines
241 B
ObjectPascal
program RAControls;
|
|
|
|
{$R 'RaControls.res' 'RaControls.rc'}
|
|
|
|
uses
|
|
Forms,
|
|
fJvControls in 'fJvControls.pas' {MainForm};
|
|
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm , MainForm);
|
|
Application.Run;
|
|
end.
|