Search found 2 matches

by brianwarming
Thu Apr 02, 2009 1:57 pm
Forum: madKernel
Topic: Trayicon hint, length bug !?
Replies: 1
Views: 11186

Trayicon hint, length bug !?

I had a problem with setting and getting long trayicon hints. Then I read the madKernel.pas : procedure TITrayIcon.SetHint(value: AnsiString); var s1 : AnsiString; begin if CheckValid then begin s1 := FNID.szTip; StrPLCopy(FNID.szTip, value, 63); if FVisible then begin FNID.uFlags := NIF_TIP; if not...
by brianwarming
Thu Apr 02, 2009 12:11 pm
Forum: madKernel
Topic: Trayicon hint and Windows 7
Replies: 1
Views: 10927

Trayicon hint and Windows 7

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) if Process('gnotify.exe').IsStillRunning then begin hintStr := Process('gnotify.exe').TrayIcons.Items[0].Hint; ...