从 com 对象返回数组
我想将警报名称列表从 COM 传递到 ASP 页面中使用的 VBScript。如果方法名称是GetAlarms
,该方法的签名是什么?。 GetAlarms
返回的警报数量会有所不同。
VBScrip 支持安全数组吗?
I want to pass a list of alarm names from COM to VBScript used in ASP pages. If the method name is GetAlarms
, What would be the signature of the method?. The number of alarms returned by GetAlarms
will vary.
Does VBScrip support Safe Array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
*.idl 文件中的声明如下所示:
相应的 C++ 方法如下所示:
最后,这里是一个使用上述方法的 VBScript 示例:
在 ASP 中,当然,您可以使用其他内容来代替 <代码>消息框。
The declaration in the *.idl file would look like this:
The corresponding C++ method would look like this:
And finally, here is a sample VBScript that uses the above method:
In ASP, of course, you would use something else instead of
MsgBox
.