-------------------------------
Réponse au message :
-------------------------------
Salut !
je voulais savoir komment il fallai faire pour connaitre la couleur d'un pixel sur l'écran entier ???
(enfin si c possible

)
@+
fabs

Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function GetPixel Lib "gdi32" Alias "GetPixel" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long
private sub GetPixelScreenColor(x as long,y as long)
dim hDCSrc As Long
dim RGBPixelColor as long
hDCSrc = GetDC(0&)
RGBPixelColor = getpixel(hDCSrc,x,y)
end sub