//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("dstrange.res"); USEFORM("dstrange1.cpp", frmDistRanges); //--------------------------------------------------------------------------- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Application->Initialize(); Application->HelpFile = "OLCH-DMO.HLP"; Application->CreateForm(__classid(TfrmDistRanges), &frmDistRanges); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } return 0; } //---------------------------------------------------------------------------