git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
24 lines
883 B
C++
24 lines
883 B
C++
//---------------------------------------------------------------------------
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
USERES("FeaturesDemo.res");
|
|
USEFORM("FeaturesMain.cpp", fmFeaturesMain);
|
|
USEFORM("..\Common\NavBarUtils.cpp", dmCommonData);
|
|
//---------------------------------------------------------------------------
|
|
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
|
{
|
|
try
|
|
{
|
|
Application->Initialize();
|
|
Application->CreateForm(__classid(TdmCommonData), &dmCommonData);
|
|
Application->CreateForm(__classid(TfmFeaturesMain), &fmFeaturesMain);
|
|
Application->Run();
|
|
}
|
|
catch (Exception &exception)
|
|
{
|
|
Application->ShowException(&exception);
|
|
}
|
|
return 0;
|
|
}
|
|
//---------------------------------------------------------------------------
|