git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES/trunk@5 9a1d36f3-7752-2d40-8ccb-50eb49674c68
25 lines
704 B
ObjectPascal
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.
|
|
|