从 VBScript 使用 Foo(..., [out] BSTR * value) 调用 COM 方法

发布于 2024-11-01 03:45:23 字数 270 浏览 2 评论 0原文

是否可以使用 VBScript 的签名来计算 COM 方法

 HRESULT Foo(BSTR in, [out] BSTR * out1, [out] BSTR * out2)

以下:

 Dim a;
 Dim b;
 component.Foo "something", a, b

给出有关不兼容类型的错误。


我仍然可以更改该方法的签名。

Ist it possible to cal a COM method with the signature

 HRESULT Foo(BSTR in, [out] BSTR * out1, [out] BSTR * out2)

from VBScript?

The following:

 Dim a;
 Dim b;
 component.Foo "something", a, b

gives an error about incompatible types.


I still could change the signature of the method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的心境我的脸 2024-11-08 03:45:23

貌似不支持输出参数;而 ByRef / [in, out] 参数是,但仅限于 VARIANT 参数。

来自以下知识库文章:

信息:将参数从 ASP 组件传递到 Visual Basic 组件@ 时出现类型不匹配错误support.microsoft.com

VBScript 仅支持 VARIANT ByRef 参数。您可以使用 VBScript 调用采用 ByRef 字符串的过程,但使用 Visual Basic 构建的组件的默认行为是因类型不匹配而失败当尝试将 ByRef 参数传递给这些组件时,OLE 自动化的默认类型强制函数在要求将 ByRef 变体转换为任何其他 ByRef 类型时失败。

此外,以下是有关该主题的其他链接:

In、Out、In-Out,已经下定决心 @ MSDN博客
VBScript“类型不匹配”问题与“[in, out] BSTR *”参数SO问题

Looks like output parameters are not supported; while ByRef / [in, out] parameters are, but only on VARIANT parameters.

From the following KB article:

INFO: Type mismatch errors when you pass parameters from an ASP component to Visual Basic Component @ support.microsoft.com

"VBScript only supports VARIANT ByRef parameters. You can use VBScript to call a procedure that takes ByRef strings, but the default behavior of components built with Visual Basic is to fail with a type mismatch error when trying to pass ByRef parameters to these components. OLE Automation's default type-coercion function fails when asked to convert a ByRef variant into any other ByRef type."

Also, here are other links on the topic:

In, Out, In-Out, Make up your mind Already @ MSDN blogs
VBScript “Type Mismatch” issue with “[in, out] BSTR * ” parameter SO Question

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文