Ver Mensaje Individual
  #2  
Antiguo 27-09-2012
elarys elarys is offline
Miembro
 
Registrado: abr 2007
Posts: 94
Reputación: 18
elarys Va por buen camino
Y seguramente porque no entra en el evento Create
Alguien con mas experiencia, te lo explicara

Código Delphi [-]
var
  IWForma : TIWFTest;
begin
  If not (IWForma = Nil) then
    IWForma := TIWFTest.Create(nil);
  IWForma.Show;

//o asi

  if Assigned(IWForma) then
    IWForma := TIWFTest.Create(nil);
  try
    IWForma.Show;
  except
    IWForma := TIWFTest.Create(nil);
    IWForma.Show;
  end;
Responder Con Cita