0

我有一个应用程序,它将形成一个数据包并将数据包数据发送到外部程序进行发送。我一切正常,但我知道的唯一不需要窗口是最重要的方法是 PostMessage。但是,它似乎总是在消息的开头丢失 0-2 个字符。有没有办法可以进行检查以防止丢失?我试过循环 GetLastError() 并在它为 0 时重新发送它,但它没有任何帮助。这是我到目前为止得到的代码:

    public void SendPacket(string packet)
    {
        //Get window name
        IntPtr hWnd = Window.FindWindow(null, "???????????");
        //Get the first edit box handle
        IntPtr edithWnd = Window.FindWindowEx(hWnd, IntPtr.Zero, "TEdit", "");
        //Get the handle for the send button
        IntPtr buttonhWnd = Window.FindWindowEx(hWnd, IntPtr.Zero, "TButton", "SEND");
        //Iterate twice to get the edit box I need
        edithWnd = Window.FindWindowEx(hWnd, edithWnd, "TEdit", "");
        edithWnd = Window.FindWindowEx(hWnd, edithWnd, "TEdit", "");
        foreach (Char c in packet)
        {
            SendCheck(c, edithWnd);
        }
        //Press button
        TextSend.PostMessageA(buttonhWnd, 0x00F5, 0, 0);
        //Clear the edit box
        TextSend.SendMessage(edithWnd, 0x000C, IntPtr.Zero, "");
    }

    public void SendCheck(char c, IntPtr handle)
    {
        //Send the character
        TextSend.PostMessageA(handle, 0x102, c, 1);
        //If error code is 0 (failure), resend that character
        if (TextSend.GetLastError() == 0)
            SendCheck(c, handle);
        return;
    }

以下是 TextSend 类中的定义:

        [DllImport("Kernel32.dll")]
        public static extern int GetLastError();
        [return: MarshalAs(UnmanagedType.Bool)]
        [DllImport("user32.dll", SetLastError = true)]
        public static extern bool SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, string s);  
4

1 回答 1

1

您找到 TEdit 和 TButton 的事实让我认为目标应用程序是用 Delphi 编写的。如果是这样,根据 Delphi 的版本,它可能是也可能不是 Unicode 应用程序。您正在调用 PostMessageA 而不是 PostMessageW,这意味着它正在从 c# 应用程序发送单字节 Ansi 字符而不是 16 位 Unicode 字符。

您是否有目标应用程序的源代码?在编辑框中填充数据并单击按钮似乎有点脆弱。如果您可以修改目标应用程序,那么除了一次发送一个字符之外,肯定还有其他选择。

于 2012-01-02T02:46:05.337 回答