14 lines
287 B
ObjectPascal
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.
|