up vote 3 down vote favorite
5
share [g+] share [fb]

I need to control other application by simulating mouse movement and keyboard input. How do I accomplish this in C#? Is it even possible?

link|improve this question

77% accept rate
Maybe Jon Skeet is the only one who can do that :) – Eliseo Ocampos Jul 16 '09 at 1:33
Looks like a duplicate of stackoverflow.com/questions/412598/…. I found that by searching stackoverflow.com/search?q=Control+another+application – John Saunders Jul 16 '09 at 4:25
However accepted answer for this question is different than the accepted answer for the duplicate (both provide a reasonable solution). – Eric J. May 20 '11 at 19:46
feedback

5 Answers

up vote 6 down vote accepted

Have you looked at White?

Sample code:

   Application application = Application.Launch("foo.exe");
   Window window = application.GetWindow("bar", InitializeOption.NoCache);

   Button button = window.Get<Button>("save");
   button.Click();

I don't think it can get better than that. The library is created by ThoughtWorks.

link|improve this answer
is that a bad link or did codeplex just throw a conniption? – Dave Markle Jul 16 '09 at 1:38
I was trying to browse White project's documentation and it started giving errors! BTW, 'White' will give you OO approach to control Windows based applications. – SolutionYogi Jul 16 '09 at 1:39
White seems like a good route. I'll look into that. – Salamander2007 Jul 16 '09 at 1:50
feedback

See "To send a keystroke to a different application" on this page:

http://msdn.microsoft.com/en-us/library/ms171548.aspx

link|improve this answer
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

link|improve this answer
feedback

You can use p/invoke, I stole the following code for mouse clicks in random spots on a button with a known handle:

    [Flags]
    public enum MouseEventFlags
    {
        LEFTDOWN = 0x00000002,
        LEFTUP = 0x00000004,
        MIDDLEDOWN = 0x00000020,
        MIDDLEUP = 0x00000040,
        MOVE = 0x00000001,
        ABSOLUTE = 0x00008000,
        RIGHTDOWN = 0x00000008,
        RIGHTUP = 0x00000010
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct Rectangle
    {
        public int X;
        public int Y;
        public int Width;
        public int Height;
    }

    private static void Click(IntPtr Handle)
    {
        lock (typeof(MouseAction))
        {
            Rectangle buttonDesign;

            GetWindowRect(Handle, out buttonDesign);
            Random r = new Random();

            int curX = 10 + buttonDesign.X + r.Next(100 - 20);
            int curY = 10 + buttonDesign.Y + r.Next(60 - 20);

            SetCursorPos(curX, curY);
            //Mouse Right Down and Mouse Right Up
            mouse_event((uint)MouseEventFlags.LEFTDOWN, curX, curY, 0, 0);
            mouse_event((uint)MouseEventFlags.LEFTUP, curX, curY, 0, 0);  
        }
    }

    [DllImport("user32.dll")]
    static extern bool SetCursorPos(int X, int Y);

    [DllImport("user32.dll")]
    private static extern void mouse_event(
        long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo);

    [DllImport("user32.dll")]
    static extern bool GetWindowRect(IntPtr hWnd, out Rectangle rect);
link|improve this answer
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#.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.