Componentes.Terceros.DevExp.../official/x.26/ExpressPivotGrid/Demos/CBuilder/UnboundExternalDemo/UnboundExternalDemo.cpp
2007-09-09 11:27:27 +00:00

25 lines
890 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USEFORM("..\Common\AboutDemoForm.cpp", formAboutDemo);
USEFORM("..\Common\DemoBasicMain.cpp", frmDemoBaisicMain);
USEFORM("UnboundExternalMain.cpp", frmUnboundExternal);
USERES("UnboundExternalDemo.res");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfrmUnboundExternal), &frmUnboundExternal);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------