Componentes.Terceros.DevExp.../internal/x.36/1/ExpressPrinting System/Demos/CBuilder/TeeChartRL/TeeChartReportLink.cpp
2008-09-04 11:31:51 +00:00

22 lines
662 B
C++

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