Componentes.Terceros.DevExp.../official/x.30/ExpressQuantumGrid 6/Demos/CBuilder/CellLevelMultiselectDemo/CellLevelMultiselectDemo.cpp

40 lines
1.1 KiB
C++
Raw Normal View History

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USERES("CellLevelMultiselectDemo.res");
USEFORM("CellLevelMultiselectDemoMain.cpp", CellLevelMultiselectDemoMainForm);
USEFORM("..\AboutDemoForm.cpp", formAboutDemo);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Title = "ExpressQuantumGrid CellLevelMultiselect Demo";
Application->CreateForm(__classid(TCellLevelMultiselectDemoMainForm), &CellLevelMultiselectDemoMainForm);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
//---------------------------------------------------------------------------