0

我正在尝试自动化 Gupta 的团队开发人员控制,如中所述

Centura Gupta 团队开发人员自动化可能性

我下载了Team Developer 7.1的 32 位试用版

[DllImport("user32.dll")]
        static extern IntPtr WindowFromPoint(System.Drawing.Point p);     

        [DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
        static extern long GetClassName(IntPtr hwnd, StringBuilder lpClassName, long nMaxCount);

        const string guptadllpath = @"C:\program files (x86)\gupta\team developer 7.1\VTI71.DLL";        
        [DllImport(guptadllpath)]
        extern static int VisTblFindString(IntPtr hwndTable, int lStartRow, IntPtr hwndColumn, string lpctszSearchFor);

        IntPtr _wndFromPoint;
        private void MainForm_MouseUp(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                Cursor.Current = Cursors.Default;
                Point p = PointToScreen(e.Location);

                _wndFromPoint = WindowFromPoint(p);

                StringBuilder classText = new StringBuilder(256);
                GetClassName(_wndFromPoint, classText, 256);

                listBox1.Items.Add("Class: " + classText);

                int a = VisTblFindString(_wndFromPoint, 0, IntPtr.Zero, "Pat");

                this.Text = a.ToString();
            }
        }

但是给我以下错误:

System.Runtime.InteropServices.SEHException (0x80004005):外部组件已引发异常。

我的示例应用程序是在此处输入图像描述

请建议我如何解决此错误。在 C# 中使用 Gupta 的 dll 进行自动化是否正确?

谢谢,

4

2 回答 2

1

从外部调用 VisTblFindString(..) 将不起作用。即使该函数将窗口句柄作为参数,它也只能在“网格应用程序”内部工作。原因是一个进程无法查看另一个进程的内存(好的,您可以使用 GetWindowText(..) 但这在这里不适用,因为在网格中并非每个单元格都是不同的窗口)。

您必须设置一些进程间通信。不幸的是,在 gupta 网格中没有支持这一点的内置函数。我看到的唯一方法是您必须修改网格应用程序(不确定您是否控制它的源代码)。如果您有可能对其进行修改,那么您可以实现自动化,例如通过 Windows 消息。

于 2018-08-31T08:42:50.937 回答
0

我不知道 c# 从一块肥皂 - 但是如果你在 TeamDeveloper 之外使用 dll,它可能是你导入它的方式,或者你没有注册 dll,或者你没有在外面使用它的许可证的 TeamDeveloper ,或者您应该使用 64 位版本。试用许可证可能不会削减它。但我只是在这里猜测。

于 2018-08-31T02:59:53.167 回答