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