First commit 11/12/1999

This commit is contained in:
2021-09-12 22:10:10 +02:00
commit eabf73fec2
22 changed files with 689 additions and 0 deletions

22
Horarios.cpp Normal file
View File

@ -0,0 +1,22 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("Horarios.res");
USEFORM("CfgTurnos.cpp", Turnos);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Title = "Gestor de Horarios";
Application->CreateForm(__classid(TTurnos), &Turnos);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------