将 VB6 ActiveX 控件集成到 TCL/Tk 应用程序中
在 Tcl/Tk 包装应用程序中实例化 VB6 ActiveX 控件的最常见方法是什么。
此设置(即 GDI 句柄周围)是否存在性能问题?
Whats the most common way of instantiating VB6 ActiveX controls inside of an Tcl/Tk wrapper application.
Are there performance issues with this setup i.e. around GDI handles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在创建一个扩展名为 .tcl 的文本文件,其中包含以下内容:
双击 .tcl 文件以使用 Wish 将其打开。
另一种选择是使用“Open Tcl”又名 optcl,它显然与 tcom 不同,它支持在基于 Tk 的应用程序中嵌入可视化 ActiveX 组件。安装方式与tcom类似(将optcl文件夹复制到C:\tcl\lib文件夹中。
以下是optcl版本的代码:
Now create a text file with the .tcl extension containing the following:
Double click the .tcl file to open it using wish.
Another option is to use "Open Tcl" a.k.a. optcl which apparently unlike tcom supports embedding a visual ActiveX component in a Tk based application. The install is similar to tcom (copy the optcl folder into the C:\tcl\lib folder.
Here is the optcl version of the code: