Declare a variable of type TPanel
and store a reference to your component in that variable.
var
Panel: TPanel;
....
Panel := TPanel.Create(Self);
You can then refer to the control using this variable.
You will likely need to hold the variable as a member field of the form, or in an array, or indeed some other container.
5
solved How to access component’s properties without knowing its name?