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