git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES2/trunk@11 40301925-124e-1c4e-b97d-170ad7a8785b
37 lines
1.1 KiB
ObjectPascal
37 lines
1.1 KiB
ObjectPascal
program FactuGES;
|
|
|
|
uses
|
|
Forms,
|
|
Windows,
|
|
SysUtils,
|
|
uFactuGES_App,
|
|
Dialogs,
|
|
uPantallaPrincipal in 'uPantallaPrincipal.pas' {fPantallaPrincipal},
|
|
uMenuUtils in 'Utiles\uMenuUtils.pas',
|
|
uSplash in 'uSplash.pas' {SplashScreen},
|
|
uAcercaDe in 'uAcercaDe.pas',
|
|
uNavPaneUtils in 'Utiles\uNavPaneUtils.pas',
|
|
uMainMenuController in 'uMainMenuController.pas',
|
|
uClienteUtils in 'Utiles\uClienteUtils.pas',
|
|
uBootStrap in 'uBootStrap.pas',
|
|
uNavPaneController in 'uNavPaneController.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
|
|
//ReportMemoryLeaksOnShutdown := True;
|
|
|
|
// ¡¡¡Fallo en Delphi 2007!!!
|
|
// Tengo que ponerlo a false porque si no el formulario principal no se puede poner por encima de los formularios hijos.
|
|
// Luego, en el formulario principal cambio los paramátros para obligar a que aparezca el icono en la barra de tareas.
|
|
|
|
uBootStrap.Initialize;
|
|
uBootStrap.Run; // <- Aquí dentro esta Application.Run
|
|
uBootStrap.Terminate;
|
|
|
|
Application.Terminate; //<- No descomentar para así ver los Memory Leaks
|
|
end.
|
|
|