show/hide this revision's text 3 deleted 433 characters in body

Please note that if you're using an old version of Delphi you may still need the NewInstance call before create. I don't

Edit:

Didn't fully remember when this changed how it was in old delphi versions but you don't need NewInstance apparently this should work in Delphi 2007 and Delphi 2009.

The placement of you Create probably also depends all based on the version, as the memory allocation that needs to be freed is in the NewInstance call. Gamecats solution would be the best however, use it if you canother replies.

Edit:

Note, Create has been calling Destroy on fail for as long as I can remember. It shouldn't be after I think.

Code would be:

//TCustomPageClass = class of TCustomPage
procedure TPageClassFactory.TryExecute(ScrnClass: TCustomPageClass);
var
  ScrnObj: TCustomPage;
begin
  ScrnObj := TCustomPage(ScrnClass.NewInstance); // Exception here means you get nothing to free ;)
  ScrnObj.Create(Self);  // Exception here calls the destructor
  try
    ScrnObj.Execute; // Exception here means you need to free manually      
  finally
    FreeAndNil(ScrnObj); // Be free!
  end;
end;

I don't have Delphi 2006 to test anymore but also try this:

procedure TPageClassFactory.TryExecute(ScrnClass: TCustomPageClass);
var
  ScrnObj: TCustomPage;
begin
  ScrnObj := ScrnClass.Create(Self);  // Exception here calls the destructor
  try
    ScrnObj.Execute; // Exception here means you need to free manually      
  finally
    FreeAndNil(ScrnObj); // Be free!
  end;
end;

I removed the result returned by the original function as it can never be false, only "unassigned" (exception) or true. You could after all get an exception before you assign result to false. ;)

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

Please note that if you're using an old version of Delphi you may still need the NewInstance call before create. I don't remember when this changed but you don't need NewInstance in Delphi 2007 and Delphi 2009.

The placement of you Create probably also depends on the version, as the memory allocation that needs to be freed is in the NewInstance call. Gamecats solution would be the best however, use it if you can.

Edit:

Note, Create has been calling Destroy on fail for as long as I can remember. It shouldn't be after I think.

Code would be:

//TCustomPageClass = class of TCustomPage
procedure TPageClassFactory.TryExecute(ScrnClass: TCustomPageClass);
var
  ScrnObj: TCustomPage;
begin
  ScrnObj := TCustomPage(ScrnClass.NewInstance); // Exception here means you get nothing to free ;)
  ScrnObj.Create(Self);  // Exception here calls the destructor
  try
    ScrnObj.Execute; // Exception here means you need to free manually      
  finally
    FreeAndNil(ScrnObj); // Be free!
  end;
end;

I don't have Delphi 2006 to test anymore but also try this:

procedure TPageClassFactory.TryExecute(ScrnClass: TCustomPageClass);
var
  ScrnObj: TCustomPage;
begin
  ScrnObj := ScrnClass.Create(Self);  // Exception here calls the destructor
  try
    ScrnObj.Execute; // Exception here means you need to free manually      
  finally
    FreeAndNil(ScrnObj); // Be free!
  end;
end;

I removed the result returned by the original function as it can never be false, only "unassigned" (exception) or true. You could after all get an exception before you assign result to false. ;)

show/hide this revision's text 1

Please note that if you're using an old version of Delphi you may still need the NewInstance call before create. I don't remember when this changed but you don't need NewInstance in Delphi 2007 and Delphi 2009.

The placement of you Create probably also depends on the version, as the memory allocation that needs to be freed is in the NewInstance call. Gamecats solution would be the best however, use it if you can.