Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Removing system tray icons
Message
From
07/04/2005 12:19:28
 
 
To
06/04/2005 09:39:28
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Miscellaneous
Thread ID:
01001782
Message ID:
01002335
Views:
30
Hello,

if a mousemove removes the invalid icons you may try to send a WM_MOUSEMOVE message to the systray

#DEFINE WM_MOUSEMOVE 0x0200

SendMessage(theHwnd,WM_MOUSEMOVE,0,0)

or with mouse cursor coordinates :
x = 1
y = 1
nCoord = BITOR(x,BITLSHIFT(y,16))
SendMessage(theHwnd,WM_MOUSEMOVE,0,nCoord)

Regards
Christian
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform