home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++ Builder
- //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USERES("BKQUERY.res");
- USEFORM("QueryFrm.cpp", AdhocForm);
- USEFORM("RESLTFRM.CPP", QueryForm);
- USEFORM("SAVEQAS.CPP", SaveQueryAs);
- USERC("bkstring.rc");
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TAdhocForm), &AdhocForm);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-