Pointer/key input control

Hello!
For a long time, I've wanted to make a bot program for various things, and here's the problem: I've never been able to find a keyboard or mouse input and output function for C++, python, or VB.net (at least, not one that I understand). If anyone can help me, please do!
Thanks,
Somanayr
To manipulate input events on a system-wide level:
http://www.google.com/search?btnI=1&q=msdn+Hooks
Look at the journal hook functions.

To manipulate input events for a specific window, simply send the appropriate messages to it.

There is also the SendKeys type functions. For example:
http://www.codeproject.com/KB/cpp/sendkeys_cpp_Article.aspx

Good luck!
Topic archived. No new replies allowed.