//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("f8254.res"); USELIB("CBACCES.lib"); USEFORM("f8254Unit.cpp", f8254Form); //--------------------------------------------------------------------------- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Application->Initialize(); Application->CreateForm(__classid(Tf8254Form), &f8254Form); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } return 0; } //---------------------------------------------------------------------------