VB下继承VC接口生成COM组件

VB下继承VC接口生成COM组件,第1张

概述在VB下调用VC写的COM动态库,并生产COM组件。程序很简单,只是当时写的时候因为对VB语言的不熟悉,就弄得很困难。 此处是原帖:http://topic.csdn.net/u/20110313/09/f2b56748-3cf8-4b0d-91cd-ee9035f3c130.html Public Class Css Implements laserca.ICAMenu'接口继承

在VB下调用VC写的COM动态库,并生产COM组件。程序很简单,只是当时写的时候因为对VB语言的不熟悉,就弄得很困难。

此处是原帖:http://topic.csdn.net/u/20110313/09/f2b56748-3cf8-4b0d-91cd-ee9035f3c130.html

Public Class CSS    Implements laserca.ICAMenu'接口继承    Sub AddMenu(ByRef pMenuIndex As Object,ByRef pname As String) Implements laserca.ICAMenu.AddMenu        Dim myArray() As Short = {1,2}        pMenuIndex = myArray        pname = "ss"    End Sub    Sub doFunction(ByVal para As Object) Implements laserca.ICAMenu.doFunction    End SubEnd Class
然后打开VS2005命令提示符
注册
regasm /tlb [filename] /codebase
注销
regasm /u [filename]

Public Class CSS    Implements tlbToDll.ICAMenuUnit'接口继承    Sub getMenuPara(ByRef pMenuIndex As Object,ByRef pname As String) Implements tlbToDll.ICAMenuUnit.getMenuPara        Dim myArray() As Short = {0,2}        pMenuIndex = myArray        pname = "ss"    End Sub    Sub doFunction(ByVal pWorker As Object) Implements tlbToDll.ICAMenuUnit.doFunction        MsgBox(" Hello World!")    End SubEnd Class
总结

以上是内存溢出为你收集整理的VB下继承VC接口生成COM组件全部内容,希望文章能够帮你解决VB下继承VC接口生成COM组件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1289308.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存