First commit 11/07/1998
This commit is contained in:
23
MultiBase_TXT.cpp
Normal file
23
MultiBase_TXT.cpp
Normal file
@ -0,0 +1,23 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include <vcl.h>
|
||||
#pragma hdrstop
|
||||
USERES("MultiBase_TXT.res");
|
||||
USEFORM("MultiBase_PRJ.cpp", MultiBase);
|
||||
USEFORM("AcercaDe.cpp", AboutBox);
|
||||
//---------------------------------------------------------------------------
|
||||
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
||||
{
|
||||
try
|
||||
{
|
||||
Application->Initialize();
|
||||
Application->CreateForm(__classid(TMultiBase), &MultiBase);
|
||||
Application->Run();
|
||||
}
|
||||
catch (Exception &exception)
|
||||
{
|
||||
Application->ShowException(&exception);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
Reference in New Issue
Block a user