First commit 12/02/2000

This commit is contained in:
2021-09-12 22:14:03 +02:00
commit 770bd03a81
18 changed files with 549 additions and 0 deletions

21
MultiFiltro.cpp Normal file
View File

@ -0,0 +1,21 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("MultiFiltro.res");
USEFORM("InfoProveedores.cpp", InfoProv);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TInfoProv), &InfoProv);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------