I have tried to control another application to automate a process we do 100 times a day. It is simple enough, a few key strokes is all but I have been foiled in all attempts.

ROUND 1: I have tried .Net SendKeys to send an alt+c: AppActivate("Multichannel Order Manager") 'Get focus to my app I wish to control

THEN: SendKeys.SendWait(‘%C’) or SendKeys.Send(‘%C’) or SendKeys.SendWait(‘%c’) or SendKeys.Send(‘%c’) have all resulted in nothing happening in my app. If I send the alt and then the ‘c’ the app responds but not to the combo. When I send them separate the app doesn’t do what I need it to, they have to be together. All alt key combos fail but single key strokes work.

ROUND 2: I tried sending key strokes using the FindWindow and PostMessage API:

    Dim ParenthWnd As New IntPtr(0)
    Dim hWnd As New IntPtr(0)
    Dim iRetval As Integer

    ParenthWnd = FindWindowByClass("momwin9c000000", 0)
    If ParenthWnd.Equals(IntPtr.Zero) Then
        Beep()
    Else

        iRetval = SendMessage(ParenthWnd, WM_KEYDOWN, Keys.Alt, 0)
        iRetval = SendMessage(ParenthWnd, WM_KEYUP, Keys.C, 0)
        iRetval = PostMessage(ParenthWnd, WM_KEYUP, Keys.Alt, 0)

    End If

This too failed, maybe because I'm not writing to the correct child window of the app? I have tried using Spy++ to try to figure this out but don't know what I'm doing wrong.

ROUND 3: Using Spy++ I tried to figure out what commands I should be sending but again, maybe I don't fully understand what I should be doing.

    Dim ParenthWnd As New IntPtr(0)
    Dim hWnd As New IntPtr(0)
    Dim iRetval As Integer

    ParenthWnd = FindWindowByClass("momwin9c000000", 0)
    If ParenthWnd.Equals(IntPtr.Zero) Then
        Beep()
    Else
        ' Have the window handle 
        Dim ChildhWnd As New IntPtr(0)
        ChildhWnd = FindWindowEx(ParenthWnd, IntPtr.Zero, "momwin9c000000", "MOM Main Menu Toolbar")
        If ChildhWnd.Equals(IntPtr.Zero) = False Then
            iRetval = PostMessage(ParenthWnd, WM_KEYUP, &H12, &HD0380001)
            iRetval = PostMessage(ChildhWnd, WM_KEYUP, Keys.ShiftKey, 0)
            iRetval = PostMessage(ChildhWnd, WM_KEYUP, Keys.Alt, 0)
        End If
    End If

ROUND 4: On thing I didn't mention is the application window is divided into 2 panels. I can't tab from one panel to the other but I can (using keyboard) alt+c which is what I'm trying to accomplish. So round 4 went to a mouse click approach. I tried moving the mouse position to the know location of the textbox which I'm trying to move focus to, and clicking.

    Cursor.Position = Me.PointToScreen(New Point(200, 180))
    mouse_event(MOUSEEVENTF_LEFTDOWN, 200, 180, 0, 0)

This moved the mouse pointer to the center of the textbox in the bottom panel and clicks, however, the focus stays in the top panel and only moves to the next textbox, almost like a tabkey stroke.

SUMMARY: I don't understand what the difference is between a actual alt+c keystroke and either the sendkeys version or the Window's API version but the real keystrokes work and my attempts fail. Same with the difference between actual mouse-clicks and my mouse_event api attempt. What can I do or try different. Any suggestions are appreciated. I think part of my problem may be solved if I can get a handle to the child window of the main app, but I can't seam to and I'm not sure what I'm doing wrong.

As a test I downloaded a free mouse/keystroke macro recorder. It failed to control the window worse then me.

link|improve this question
feedback

1 Answer

2,3 - The problem with Alt and Ctrl is that applications check keyboard state to find out if they are pressed, and not the event queue. That's why SendMessage doesn't work. keybd_event works although it's deprecated (and SendKeys/SendInput should be used instead :)

1 - Didn't you miss configuration (as per Is there any difference between keybd_event() and SendKeys.SendWait()?); And also FindWindow()/SetForegroundWindow() could probably work better then AppActivate?

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.