I am trying to flash the inactive tabs in a TPageControl
. I do something like the following:
for I := 0 to PageControl1.PageCount do
begin
if PageControl1.Pages[I].Tag = '1' then
begin
if PageControl1.ActivePage <> PageControl1.Pages[I] then
begin
FlashWindow(PageControl1.Pages[I].PageControl.Handle, True);
end;
end;
end;
But I still cannot flash the inactive PageControl
tab. Is there any reference on how to flash inactive tabs in a page control? Or even how to get the inactive tab handles?