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

23 lines
729 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("SpellCheckerSimpleDemo.res");
USEFORM("SimpeDemoMain.cpp", fmCV);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfmCV), &fmCV);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------