Ver Mensaje Individual
  #2  
Antiguo 12-02-2004
__cadetill __cadetill is offline
Miembro
 
Registrado: may 2003
Posts: 3.387
Reputación: 27
__cadetill Va por buen camino
Supongo que será porque no hacer referencia a la clase. Ha de ser algo así:

Código:
begin
  fForm := Talta_expo.Create(Self);
  try
    fForm.FormStyle := fsNormal;
    fForm.Visible:=False;
    fForm.ShowModal;
  finally
    fForm.Free;
  end;
end;
Responder Con Cita