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