I wrote below code to create an extra button on Calculator, but the button don't show:
var
Object1 : TButton ;
Hand: THandle;
begin
Hand:= FindWindow('CalcFrame', 'Calculator');
Object1 := TButton.CreateParented(Hand);
Object1.Show ;
end;
I get the controls on the calculator after running the above code using EnumChildWindow API function and see the created button in control list that EnumChildWindow returns, but why does the created button not show ?
As I remember I use this code on windows XP and it works without problem but now in windows 7 the created button doesn't appear.