First commit 14/02/1999
This commit is contained in:
29
TPV_Ventas.cpp
Normal file
29
TPV_Ventas.cpp
Normal file
@ -0,0 +1,29 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include <vcl.h>
|
||||
#pragma hdrstop
|
||||
USERES("TPV_Ventas.res");
|
||||
USEFORM("TpvVentas.cpp", Ventas);
|
||||
USEFORM("TDlgBuscar.cpp", DlgBuscar);
|
||||
USEFORM("TpvVntFctPrint.cpp", QRMDFacturaVnt); /* TQuickRep: File Type */
|
||||
USEFORM("TpvVntAlbPrint.cpp", QRMDFacturaVnt1); /* TQuickRep: File Type */
|
||||
USEFORM("ListInit.cpp", AcercaDe);
|
||||
USEFORM("TpvCFG.cpp", CFG);
|
||||
//---------------------------------------------------------------------------
|
||||
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
||||
{
|
||||
try
|
||||
{
|
||||
Application->Initialize();
|
||||
Application->CreateForm(__classid(TAcercaDe), &AcercaDe);
|
||||
Application->CreateForm(__classid(TVentas), &Ventas);
|
||||
Application->CreateForm(__classid(TCFG), &CFG);
|
||||
Application->Run();
|
||||
}
|
||||
catch (Exception &exception)
|
||||
{
|
||||
Application->ShowException(&exception);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
Reference in New Issue
Block a user