Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do something like this:

function CreateIfForm ( const nClass : TClass ) : TForm;
begin
  if not ( nClass is TFormClass ) then
    raise Exception.Create( 'Not a form class' );
  Result := ( nClass as TFormClass ).Create( Application );
end;

This produces error "Operator not applicable to this operand type". I'm using Delphi 7.

share|improve this question
Don't forget to accept the answers ;-) – TLama Jun 27 '12 at 3:23

1 Answer

up vote 15 down vote accepted

First you should check if you can change the function to accept only a form class:

function CreateIfForm(const nClass: TFormClass): TForm;

and bypass the need for type checking and casting.

If this isn't posssible, you can use InheritsFrom:

function CreateIfForm(const nClass: TClass): TForm;
begin
  if not nClass.InheritsFrom(TForm) then
    raise Exception.Create('Not a form class');
  Result := TFormClass(nClass).Create(Application);
end;
share|improve this answer
InheritsFrom! Yes, that's exactly what I'm looking for. Thanks – user1008646 Nov 22 '11 at 15:01
@Ulrich -- Your second answer is really the correct one: The function should never even accept a class that isn't a form. – Nick Hodges Nov 22 '11 at 16:59
@Nick, your right of course. I rephrased my answer to better reflect this. – Uli Gerhardt Nov 22 '11 at 17:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.