GetActiveWindow
WindowHandle = GetActiveWindow
WindowDC = GetDC(WindowHandle)
GetPixel(WindowDC, 10, 10)
I should expect to always read from location 10, 10 of the window, no matter where I move it but instead I'm reading from location 10, 10 of the screen, which is always fixed. This means I have to keep the window in one place. Does anyone know what I'm doing wrong?

