Componentes.Terceros.DevExp.../official/x.30/ExpressDBTree Suite/Demos/CBuilder/DBTree_F/dbtree_f.cpp
2007-12-16 17:06:54 +00:00

25 lines
803 B
C++

//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM("DBTree_Fmain.cpp", Form1);
USERES("dbtree_f.res");
USEFORM("dbview.cpp", Form2);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TForm1), &Form1);
Application->CreateForm(__classid(TForm2), &Form2);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------