Ver Mensaje Individual
  #2  
Antiguo 08-10-2005
Avatar de dec
dec dec is offline
Moderador
 
Registrado: dic 2004
Ubicación: Alcobendas, Madrid, España
Posts: 13.107
Reputación: 34
dec Tiene un aura espectaculardec Tiene un aura espectacular
Hola,

No sé hasta qué punto puede servirte, pero...


Cita:
Empezado por Ayuda de Delphi - Hiding the main form
You can prevent the main form from appearing when your application starts by using the global Application variable.

To hide the main form at startup:

1 Choose Project|View Source to display the main project file.
2 Add the following code after the call to Application.CreateForm and before the call to Application.Run.

Código Delphi [-]
 Application.ShowMainForm := False;
 Form1.Visible := False; { the name of your main form may differ }
Note:

You can set the form's Visible property to False using the Object Inspector at design time rather than setting it at runtime as in the previous example.
__________________
David Esperalta
www.decsoftutils.com
Responder Con Cita