Componentes.Terceros.SDAC/internal/4.10.0.10/1/Demos/Win32/Miscellaneous/CBuilder/CBuilder5.cpp
2007-10-05 14:48:18 +00:00

22 lines
647 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("CBuilder5.res");
USEFORM("Main.cpp", fmMain);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfmMain), &fmMain);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------