从 VBScript 使用 Foo(..., [out] BSTR * value) 调用 COM 方法
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
貌似不支持输出参数;而
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 onVARIANT
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