git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@2 93f398dd-4eb6-7a46-baf6-13f46f578da2
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.
|
|
|