Quote Originally Posted by paul_nicholls View Post
I think there is a TForm.FindControl() method that returns a control by name like so:

Code:
Var
  Button: TButton;
begin
  Button := FindControl('Button1') as TButton;
cheers,
Paul
Thank you Paul for anwser but
"Find Control" wants a handle control not a string
FindControl(Handle: HWnd)

Can i use the findComponet function ?
But how i can get the control of the componet so i can make it visible?

Thanks again...