git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#include "FeaturesDemoMain.h"
|
|
#pragma hdrstop
|
|
//---------------------------------------------------------------------------
|
|
USEFORM("FeaturesDemoMain.cpp", FeaturesMainForm);
|
|
USEFORM("FeatureChild.cpp", FeatureChildForm);
|
|
USEFORM("FeatureModify.cpp", FeatureModifyForm);
|
|
USERES("FeaturesDemo.res");
|
|
//---------------------------------------------------------------------------
|
|
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
|
{
|
|
try
|
|
{
|
|
Application->Initialize();
|
|
Application->Title = "ESS Features Demo";
|
|
Application->CreateForm(__classid(TFeaturesMainForm), &FeaturesMainForm);
|
|
FeaturesMainForm->NewSheet("");
|
|
Application->Run();
|
|
}
|
|
catch (Exception &exception)
|
|
{
|
|
Application->ShowException(&exception);
|
|
}
|
|
catch (...)
|
|
{
|
|
try
|
|
{
|
|
throw Exception("");
|
|
}
|
|
catch (Exception &exception)
|
|
{
|
|
Application->ShowException(&exception);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
|