Componentes.Terceros.DevExp.../official/x.38/ExpressSpellChecker/Demos/Delphi/SimpleDemo/SpellCheckerSimpleDemo.dpr
2008-08-27 11:56:15 +00:00

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.