show/hide this revision's text 2 added 425 characters in body

You should put the create out of the try finally block.

But a better solution is:

type 
  TMyClass = class ()
  public
    constructor Create(...); virtual;
    fucntion Execute: Boolean; virtual;
  end;
  TMyClassClass = class of TMyClass;


procedure CreateExecute(const AClass: TMyClassClass): Boolean;
var
  theclass : TMyClass;
begin
  theclass := AClass.Create;
  try
    Result := theclass.Execute;
  finally
    theclass.Free;
  end;
end;
show/hide this revision's text 1

You should put the create out of the try finally block.