Hi, is it possible to emulate a mouse wheel scroll up/down with VB?
If so can someone let me know how this works please :)
Printable View
Hi, is it possible to emulate a mouse wheel scroll up/down with VB?
If so can someone let me know how this works please :)
You can call the SendInput function from the Windows API. You should read the documentation on MSDN and then look for examples already posted on the forum. There may be examples in the CodeBank forum too.
Or the mouse_event API using the constant MOUSEEVENTF_WHEEL?
People still do use mouse_event but the doco does say that it's obsolete and you should use SendInput instead.Quote:
Originally Posted by dee-u