VTI71.DLL在C#项目中给出错误du0x80004005

时间:2018-08-30 06:31:43

标签: sqlbase guptateamdeveloper

所述,我正在尝试使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):外部组件引发了异常。

我的示例应用是enter image description here

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

谢谢

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

我不了解C#,但是如果您在TeamDeveloper之外使用dll,则可能是您导入dll的方式,或者您尚未注册dll,或者您没有许可证在TeamDeveloper之外使用它,或者您应该使用64位版本。试用许可证可能无法削减。但是我只是在猜测。