0

我想使用 msscript.ocx 从 C# 调用 VBScript,并允许 VBScript 代码回调 C# 程序中的函数。

例如,在以下 VBScript 代码中,Clicktext是使用 msscript.ocx 运行 VBScript 的同一 clss 中的自定义 C# 函数。

For i=0 to i=4

    Clicktext("Auto")

Next

Clicktext 函数应该被调用 5 次。

有什么办法吗?

4

1 回答 1

2

此 ComVisible 控制台应用程序引用了 Interop.MSScriptControl:

// !! http://sandsprite.com/blogs/index.php?uid=11&pid=83

using System;
using MSScriptControl;

//class test has to support IDispatch to AddObject(). So make the assembly ComVisible
//via AssemblyInfo.cs or [assembly: System.Runtime.InteropServices.ComVisible(true)]

namespace MsScTest {
    public class CsHelper {
        public int increment(int y) { return ++y; }
    }

    class Program {
        public static MSScriptControl.ScriptControl sc = new ScriptControl();
        static void Main(string[] args) {
            sc.Language = "VBScript";
            sc.AddObject("CsHelper", new CsHelper(), true);
            sc.AddCode(@"
Function inc(n)
  inc = CsHelper.increment(n)
End Function
MsgBox inc(4711), 0, 'With a little help from my friend CsHelper'
".Replace("'", "\""));
            return;
        }
    }
}

布丁:

---------------------------
With a little help from my friend CsHelper
---------------------------
4712
---------------------------
OK   
---------------------------

演示如何从添加到 MSScriptControl 的 VBScript 代码中调用 C# 对象的方法。

于 2013-05-05T10:55:52.143 回答