Ver Mensaje Individual
  #2  
Antiguo 29-04-2005
Avatar de hermes_32
hermes_32 hermes_32 is offline
Miembro
 
Registrado: jul 2003
Posts: 94
Reputación: 21
hermes_32 Va por buen camino
Haz lo siguiente:

Código Delphi [-]
  Application.Initialize;
  Application.CreateForm(TFLogin, FLogin);
  Respuesta := FLogin.ShowModal;
  if Respuesta = mrOK then begin
    FLogin.Destroy;
    Application.CreateForm(TForm1, FForm1);
    Application.Run;
  end
  else Application.Terminate;

Un saludo.
Responder Con Cita