This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
AlonsoYSal_FactuGES/Cliente/FactuGES.dpr
2007-06-21 16:02:50 +00:00

25 lines
704 B
ObjectPascal

program FactuGES;
uses
Forms,
uLoginForm,
uPantallaPrincipal in 'uPantallaPrincipal.pas' {fPantallaPrincipal},
uMenuUtils in 'uMenuUtils.pas',
uSplash in 'uSplash.pas' {SplashScreen},
uAcercaDe in 'uAcercaDe.pas' {fAcercaDe},
schPresupuestosClient_Intf in '..\Modulos\Presupuestos\Reglas\schPresupuestosClient_Intf.pas',
schPresupuestosServer_Intf in '..\Modulos\Presupuestos\Reglas\schPresupuestosServer_Intf.pas';
{$R *.res}
begin
Application.Initialize;
Application.Title := 'FactuGES';
Application.CreateForm(TfPantallaPrincipal, fPantallaPrincipal);
Application.CreateForm(TfAcercaDe, fAcercaDe);
Application.Run;
Application.Terminate;
end.