VTI71.DLL 在c#项目中报错du0x80004005

VTI71.DLL Give error du0x80004005 in c# project

我正在尝试自动化 Gupta 的 Team Developer 控件,如

中所述

Centura Gupta Team Developer Automation Possibility

我下载了 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 进行自动化是否正确?

谢谢,

我对 c# 一窍不通 - 但如果你在 TeamDeveloper 之外使用 dll,可能是你导入它的方式,或者你没有注册 dll,或者你没有在 TeamDeveloper 之外使用它的许可,或者您应该使用 64 位版本。试用许可证可能无法削减它。但我只是在这里猜测。

从外部调用 VisTblFindString(..) 将不起作用。即使该函数采用 window 句柄作为参数,它也只能在 "grid-application" 内部工作。原因是一个进程无法窥视另一个进程的内存(好吧,你可以使用 GetWindowText(..) 但这在这里不适用,因为在网格中并不是每个单元格都是不同的 window)。

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