Board index » delphi » Array of TImage created at runtime
cmasg...@postbox.acs.ohio-state.edu (Cris Masgras)
![]() Delphi Developer |
Sat, 28 Mar 1998 03:00:00 GMT
Array of TImage created at runtime
Here is a piece of code that works, to illustrate how to create an an array of
Image controls: ( thanks to the people who answered my questions to make it possible for me to finally figure this out ...) ________________________________________________ var Form1: TForm1; Index: Integer; obj: array [1..10] of TImage; implementation {$R *.DFM} procedure TForm1.Button1Click(Sender: TObject); procedure TForm1.FormCreate(Sender: TObject); |