Componentes.Terceros.DevExp.../internal/x.36/1/ExpressNavBar 2/Demos/CBuilder/Office12ViewsDemo/Office12ViewsDemo.cpp
2008-09-04 11:31:51 +00:00

23 lines
734 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("Office12ViewsDemo.res");
USEFORM("Office12ViewsMain.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;
}
//---------------------------------------------------------------------------