I have a TPanel on a delphi form, I want to copy all the TLabels parented with this TPanel when i press a button and put them in other panel. Is there a way to do that? Thanks.
feedback
|
|
To
and use like this
you can use the | |||
|
feedback
|
|
TPanel is a container of Components. It has a list of its child components in its Controls property. You may iterate over this list to get access to its children. At the press of the button your code has to
something like this
But, wait!, this will not work. Why? Because doing this change 'on the fly' you will be changing the very same list you are iterating over. So, you have to save the labels to be moved in a temporary list. Something like this...
| |||||||||||||
feedback
|