Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Change caption of any window
Use SetWindowText for changing caption of window, which has caption 'Delphi Help', to 'Super Delphi Help'.
procedure TForm1.Button1Click(Sender: TObject);
var
MyHandle: THandle;
begin
MyHandle:=FindWindow(nil, 'Delphi Help');
SetWindowText(MyHandle, 'Super Delphi Help');
end;
-
More for developers