Componentes.Terceros.DevExp.../internal/x.36/1/ExpressLayout Control/Demos/CBuilder/MS Money Style/MSMoneyStyle.cpp
2008-09-04 11:31:51 +00:00

23 lines
714 B
C++

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