git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
14 lines
217 B
ObjectPascal
14 lines
217 B
ObjectPascal
program SpellCheckerSimpleDemo;
|
|
|
|
uses
|
|
Forms,
|
|
SimpleDemoMain in 'SimpleDemoMain.pas' {fmCV};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfmCV, fmCV);
|
|
Application.Run;
|
|
end.
|