通过句柄c#查找窗口

时间:2017-01-05 10:10:10

标签: c# findwindowex

我一直在努力解决这个问题,但我无法得到任何答案。我是c#的新手。

所以我启动了一个应用程序(Accpac具体)然后我需要通过sendkeys / sendmessage将用户名发送到子窗口。我已经掌握了孩子的窗口,但是我无法让它工作:IntPtr。(00020380),我收到了错误"标识符预期"

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Runtime.InteropServices; 
    using System.Diagnostics; 
    using System.Windows.Forms; 
    using System.Threading; 

    namespace myNamespace
    {
        class StartAccpac
        {
            [DllImport("user32.dll", SetLastError = true)]
            static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

            [DllImport("user32.dll", SetLastError = true)]
            static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);

            public static void Main3()
            {  
                //START ACCPAC
                //Process.Start("C:\\Programs\\Accpac\\runtime\\accpac.exe");
                IntPtr hwnd = IntPtr.Zero;
                IntPtr hwndChild = IntPtr.Zero;

                //Get a MAIN HANDLE
                hwnd = FindWindow(null, "Open Company");
                hwndChild = FindWindowEx(hwnd, IntPtr.(00020380), null, null); <---- ERROR
            }

        }
    }


[![enter image description here][1]][1]
[![enter image description here][2]][2]
[![enter image description here][3]][3]

1 个答案:

答案 0 :(得分:0)

你的问题在这里:

IntPtr.(00020380)

你需要做的是这样的事情:

new IntPtr(00020380)

但是我怀疑,这是一个十六进制数,因此您可能还需要考虑:

new IntPtr(0x00020380)

与他们玩游戏,看看会发生什么。