The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 4,262 other subscribers

Delphi Are you familiar with “forgotten” hints? Here is a very rough example how to get rid of them…

Posted by jpluimers on 2018/05/22

Thanks for [WayBack] Are you familiar with “forgotten” hints? Here is a very rough example how to make them disappear without restarting the IDE… – Attila Kovacs – Google+

The code is centered around enumerating all windows of class TDesignerHintWindow and closing them.

These Windows happen to me a lot more in Galileo based IDEs than the classic Delphi < 8 ones.

–jeroen


EnumWindows(@EnumWindowsProc, LPARAM(0));
function EnumWindowsProc(Wnd: HWND; Form: TForm): BOOL; stdcall;
var
Buffer: array [0 .. 99] of Char;
ClassName: string;
begin
GetClassName(Wnd, Buffer, 100);
ClassName := string(Buffer);
if ClassName = 'TDesignerHintWindow' then
SendMessage(Wnd, WM_CLOSE, 0, 0);
Result := True;
end;

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.