Hi, I wrote:
Code:
procedure TForm1.Timer1Timer(Sender: TObject);
var
h1 :hwnd;
begin
h1:=FindWindow(nil, 'My Computer');
ShowWindow(h1, sw_hide);
end;
But, if handle consist of first letters 'My Computer' and futher some other words. In another word handle have unique name every time. How can I resolve that? Thanks.