VB 脚本和 COM

发布于 2024-11-09 10:21:45 字数 288 浏览 0 评论 0原文

我想从 ASP 调用 COM 组件的某些功能。我想知道

How can I create a COM object?. 
How can I use VARIANTS to pass to the COM object? 
Can I pass reference parameters from ASP to COM object? 
What are the limitations of passing reference objects to COM?

从哪里可以得到更多这方面的信息?

I want to call certain functions of a COM component from ASP. I would like to know

How can I create a COM object?. 
How can I use VARIANTS to pass to the COM object? 
Can I pass reference parameters from ASP to COM object? 
What are the limitations of passing reference objects to COM?

Where would I get more information about this?

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

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

发布评论

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

评论(1

晨光如昨 2024-11-16 10:21:45

如何创建 COM 对象?

使用 CreateObject 函数

Set Obj = CreateObject("COMProgID")

如何使用 VARIANTS 传递给 COM 对象?

VBScript 只有一种称为 Variant 的数据类型。

我可以将引用参数从 ASP 传递到 COM 对象吗?

是的。

将引用对象传递给 COM 有哪些限制?

我迷失了这个......

How can I create a COM object?.

Use the CreateObject function

Set Obj = CreateObject("COMProgID")

How can I use VARIANTS to pass to the COM object?

VBScript has only one data type called a Variant.

Can I pass reference parameters from ASP to COM object?

Yes.

What are the limitations of passing reference objects to COM?

I got lost with this one...

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