COM 方法结果未显示正确的值

发布于 2024-11-09 12:21:30 字数 498 浏览 0 评论 0原文

我的 COM 组件中有以下方法调用。该方法是从 VBScript 调用的。

STDMETHODIMP CMyInterface::TestX(VARIANT* myTest)
{
    myTest->vt = VT_I4;
    myTest->lVal = m_nCount;
    ++m_nCount;
    return S_OK;
}

以下代码用于调用该方法。但最后一条语句' Response.Write("Value of result" & result)'没有打印0可能是什么问题?

Set myObject = CreateObject("MyCom.MyInterface")
result=myObject.TestX(value)
Response.Write("Value of result" & result)

I have the following method call in my COM component. This method is called from VBScript.

STDMETHODIMP CMyInterface::TestX(VARIANT* myTest)
{
    myTest->vt = VT_I4;
    myTest->lVal = m_nCount;
    ++m_nCount;
    return S_OK;
}

The following code is used to invoke the method. But the last statement ' Response.Write("Value of result" & result)'is not printing 0. What could be the problem?

Set myObject = CreateObject("MyCom.MyInterface")
result=myObject.TestX(value)
Response.Write("Value of result" & result)

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

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

发布评论

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

评论(1

坏尐絯℡ 2024-11-16 12:21:30

脚本客户端不会将 HRESULT 视为方法调用的返回值。相反,它们会查找 IDL 中标记为 [out, retval] 的参数,并将其用作返回值。

Scripting clients don't consider the HRESULT to be the return value of a method call. Instead, they look for a parameter marked in the IDL as [out, retval] and use that as the return value.

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