//--------------------------------------------------------------------------- #include #pragma hdrstop #include //--------------------------------------------------------------------------- USEFORM("CFG0000MF.cpp", CFG0000M); USEFORM("..\..\PLUGIN\99.LOGIN\FRMPswdChngeF.cpp", FRMPswdChnge); USEFORM("..\..\PLUGIN\99.LOGIN\SEJONG\FRMLoginF.cpp", FRMLogin); //--------------------------------------------------------------------------- WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int) { try { Application->Initialize(); Application->MainFormOnTaskBar = true; Application->CreateForm(__classid(TCFG0000M), &CFG0000M); Application->CreateForm(__classid(TFRMLogin), &FRMLogin); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } catch (...) { try { throw Exception(""); } catch (Exception &exception) { Application->ShowException(&exception); } } return 0; } //---------------------------------------------------------------------------