24 lines
796 B
C++
24 lines
796 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl\vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
USEFORM("DBTrPrnmain.cpp", FMain);
|
||
|
|
USEFORM("dbtreeqr.cpp", QRListForm);
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
Application->Initialize();
|
||
|
|
Application->CreateForm(__classid(TFMain), &FMain);
|
||
|
|
Application->CreateForm(__classid(TQRListForm), &QRListForm);
|
||
|
|
Application->Run();
|
||
|
|
}
|
||
|
|
catch (Exception &exception)
|
||
|
|
{
|
||
|
|
Application->ShowException(&exception);
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|