I need to control other application by simulating mouse movement and keyboard input. How do I accomplish this in C#? Is it even possible?
feedback
|
|
Have you looked at White? Sample code:
I don't think it can get better than that. The library is created by ThoughtWorks. | |||||||
feedback
|
|
See "To send a keystroke to a different application" on this page: | |||
|
feedback
|
|
Use the SendMessage Native Win32 API. DllImport this method from the User32.dll. You can use this API to send both keyboard & mouse messages | |||
|
feedback
|
|
You can use p/invoke, I stole the following code for mouse clicks in random spots on a button with a known handle:
| |||
|
feedback
|
|
you can use AutoIT, it's freeware, and it has a dll version that you can import into C# (DllImport). It allows you to click on controls, write strings to edit boxes, make combobox selections etc on another application from C#. | ||||
|
feedback
|