Re: Array of Timage

Posted by Andrew on February 26, 2006

In Reply to Re: Array of Timage posted by Maxwell on February 24, 2006

As a global variable i've got the following:
EObjects: array[1..15] of TImage;

In a procedure there's the following:
EObjects[j] := TImage.Create( self );
EObjects[j].Parent := self;
...and some more properties (image, transparent, etc...)

And in another procedure:
EObjects[j].Free;

Thanks for your help

Related Articles and Replies