Componentes.Terceros.DevExp.../official/x.26/ExpressPrinting System/Demos/CBuilder/PivotGridRL/PivotGridReportLink.cpp

23 lines
773 B
C++
Raw Normal View History

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