I have another very long post on the list, however, think I have been able to focus my question some. I am adding a custom component to my application that contains a label, text input and an image. This component is added many times to a panal container. I need to be able to access the properties of each of these custom components and wonder what the best method to do so is.
I need to have a un unique id for each instantiated custom component that I can keep until I remove it from the panal. I am looking for suggestions on the best way to dynamically add or remove custom components to the panal while at the same time keeping track of the current components so I can access their properties. Currently I am using an array for each component I add to the panal, however, as I run the application, I am no longer able to access the parameters of the components in the panal, the array continues to become null. Any help on this would be greatly appreciated Thanks Don

