Trayicon hint and Windows 7

delphi package - easy access to kernel objects etc.
Post Reply
brianwarming
Posts: 2
Joined: Thu Apr 02, 2009 11:54 am
Location: Denmark

Trayicon hint and Windows 7

Post by brianwarming »

Getting the trayicon hint from another process does not seem to work on Windows 7 (using build 7057) (32 bit) The returned string is empty.

Works fine on XP SP3 and Vista SP1 (both 32 bit)

Code: Select all

if Process('gnotify.exe').IsStillRunning then
begin
  hintStr := Process('gnotify.exe').TrayIcons.Items[0].Hint;
  Memo1.Lines.Add('Got hint text : ' + hintStr);
end;
madshi
Site Admin
Posts: 10754
Joined: Sun Mar 21, 2004 5:25 pm

Post by madshi »

Windows 7 support is not finished yet.
Post Reply