//--------------------------------------------------------------------------- #include #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; } //---------------------------------------------------------------------------