git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@7 05c56307-c608-d34a-929d-697000501d7a
16 lines
404 B
ObjectPascal
16 lines
404 B
ObjectPascal
program UnboundExternalDemo;
|
|
|
|
uses
|
|
Forms,
|
|
DemoBasicMain in '..\Common\DemoBasicMain.pas' {frmDemoBaisicMain},
|
|
AboutDemoForm in '..\Common\AboutDemoForm.pas' {formAboutDemo},
|
|
UnboundExternalMain in 'UnboundExternalMain.pas' {frmUnboundExternal};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmUnboundExternal, frmUnboundExternal);
|
|
Application.Run;
|
|
end.
|