//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("Sample2.res"); USEFORM("Sample2u.cpp", Form1); USELIB("Cbacces.lib"); //--------------------------------------------------------------------------- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Application->Initialize(); Application->CreateForm(__classid(TForm1), &Form1); Application->Run(); } catch (Exception &exception) { Application->ShowException(&exception); } return 0; } //---------------------------------------------------------------------------