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