Ver Mensaje Individual
  #4  
Antiguo 25-05-2007
Avatar de vtdeleon
vtdeleon vtdeleon is offline
Miembro
 
Registrado: abr 2004
Ubicación: RD & USA
Posts: 3.236
Reputación: 24
vtdeleon Va por buen camino
Run y terminate en el mismo bloque? Seguro que te funciona?

Código Delphi [-]
var
  frmacceso:tfrmacceso;
begin
  Application.Initialize;
  frmacceso:=tfrmacceso.create(nil);
  if frmacceso.Showmodal=mrOK then
    begin
      Application.CreateForm(TFrmPresAdh, FrmPresAdh);
      ...
      Application.Run;
    end
    frmacceso.free;
end.
Creo que asi está mejor.
__________________
Van Troi De León
(Not) Guía, Code vB:=Delphi-SQL, ¿Cómo?
Viajar en el tiempo no es teóricamente posible, pues si lo fuera, ya estarían aqui contándonos al respecto!
Responder Con Cita