Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Removing system tray icons
Message
De
07/04/2005 12:19:28
 
 
À
06/04/2005 09:39:28
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Divers
Thread ID:
01001782
Message ID:
01002335
Vues:
39
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform