You can install a WH_CBT hook using the SetWindowsHookEx function.
var
hhk: HHOOK;
function CBT_FUNC(nCode: Integer; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall;
const
ClassNameBufferSize = 1024;
var
hTemp : HWND;
i : Integer;
RetVal : Integer;
ClassNameBuffer: Array[0..ClassNameBufferSize-1] of Char;
begin
case nCode of
HCBT_ACTIVATE:
begin
hTemp := HWND(wParam);
if (Screen<>nil) and (hTemp>0) then
begin
RetVal := GetClassName(wParam, ClassNameBuffer, SizeOf(ClassNameBuffer));
//check for the class
if (RetVal>0) and SameText(ClassNameBuffer,'TForm2') then
begin
Assert(RetVal < ClassNameBufferSize, 'Class name larger than fixed buffer size');
for i := 0 to Screen.FormCount-1 do
if Screen.Forms[i].Handle=hTemp then
begin
//set the caption
Screen.Forms[i].Caption:='Hello';
Break;
end;
end;
end;
end;
end;
Result := CallNextHookEx(hhk, nCode, wParam, lParam);
end;
Procedure InitHook();
var
dwThreadID : DWORD;
begin
dwThreadID := GetCurrentThreadId;
hhk := SetWindowsHookEx(WH_CBT, @CBT_FUNC, hInstance, dwThreadID);
if hhk=0 then RaiseLastOSError;
end;
Procedure KillHook();
begin
if (hhk <> 0) then
UnhookWindowsHookEx(hhk);
end;
initialization
InitHook();
finalization
KillHook();
end.