Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want to know how to get the color of the window, when my mouse move and point at a object!!!! Anyone can help?? Thanks!
Try GetPixel API using the desktop device context as follows: HDC DesktopDC = GetDC(NULL); COLORREF color = GetPixel(DesktopDC, x, y); // where x and y are the mouse coords. :)