by SimonH » 20 Aug 2014, 16:07
this looks interesting, i will try this tomorrow. right now iam using a combination of getting the Desktop resolution and the mouse_event in dependance of what part on the window you are looking: (currently working with c++)
int const SCROLLUP = 120;
int const SCROLLDOWN = -120;
void GetDesktopResolution(int& horizontal, int& vertical)
{
RECT desktop;
// Get a handle to the desktop window
const HWND hDesktop = GetDesktopWindow();
// Get the size of screen to the variable desktop
GetWindowRect(hDesktop, &desktop);
// The top left corner will have coordinates (0,0)
// and the bottom right corner will have coordinates
// (horizontal, vertical)
horizontal = desktop.right;
vertical = desktop.bottom;
}
mouse_event(MOUSEEVENTF_WHEEL, 0, 0, SCROLLUP);
mouse_event(MOUSEEVENTF_WHEEL, 0, 0, SCROLLDOWN);
Its easy to integrate. The only thing that bother me is that it isnt really smooth. Either you have full scroll or zero scroll. Maybe your solution works better.