我如何在运行时用 vb6 代码实例化 ocx 实例?
我如何在运行时用 vb6 代码实例化 ocx 实例?
new 关键字似乎不起作用...
New 关键字的使用无效
Set bob = new bobocxlib.bobcontrol
how can i instantiate an instance of an ocx at runtime in vb6 code?
new keyword doesn't seem to work...
Invalid use of New keyword
Set bob = new bobocxlib.bobcontrol
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其添加到容器的
Controls
集合中,例如在加载时将内部文本框控件添加到 VB 表单:该控件的名称是对象浏览器中显示的库名称的串联 (
VB
代码>)和类名(TextBox
)。You add it to your container's
Controls
collection e.g. adding an intrinsic textbox control to a VB form upon load:The control's name is the concatenation of library name as shown in the Object Browser (
VB
) and class name (TextBox
).