VB6 中的 VSFlexgrid 许可问题
我的 VB6 中的 VideoSoft VSFlexGrid 7.0 遇到许可问题。 当我创建一个新的 FlexGrid 时,它会触发一个带有许可/关于消息的消息框。 我们有许可证,但 VB 似乎没有完全保留它。 有没有办法摆脱这个消息?
我目前使用一种解决方法:我不创建新的 FlexGrid,而是复制现有的 FlexGrid 并根据需要对其进行修改。
I am having a licensing issue with our VideoSoft VSFlexGrid 7.0 in VB6. When I create a new FlexGrid it triggers a message box with a licensing/about message. We have a license but it appears that VB does not quite keep it. Is there a way to get rid of this message?
I currently use a workaround: instead of creating a new FlexGrid I copy an existing one and modify it as needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您使用什么操作系统? 我在使用旧版 Flexgrid 和 64 位 Vista 时遇到问题 - Flexgrid 安装程序是 16 位,无法在 64 位 Vista 上运行; 没有安装程序许可证信息无法写入注册表。 我在这个项目中使用 XP。
如果 flexgrid 安装程序在您的系统中运行,只需重新安装它(以管理员权限运行!) - 这应该在注册表中创建开发人员许可证。 简单地重新注册 ocx 文件不会创建开发者许可证。
What OS you're using? I have problem with older flexgrid and 64bit Vista - flexgrid installer is 16bit and doesn't run on 64bit Vista; without installer license information cannot be written into registry. I'm using XP for this project.
If flexgrid installer is working in your system, just reinstall it (run in admin privileges!) - that should create developer license in registry. Simply re-registering ocx file doesn't create developer license.
您可以尝试手动重新注册OCX组件。 在命令行窗口中,运行 regsvr32,后跟 .ocx 文件的名称。
You could try to manually re-register the OCX component. In a command line window, run
regsvr32
followed by the name of the .ocx file.遗憾的是,注册组件与许可无关。 VB 自定义组件(可选)附带一个 lic 文件,该文件由应用程序安装程序添加到注册表中。 如果没有正确的 lic 详细信息,您可以在运行时实例化控件,但不能在设计时实例化。
因此,解决此问题最可能的方法是重新运行原始 Flex Grid 安装程序。
Registering components has nothing to do with licensing, sadly. VB Custom Components (optionally) came with a lic file that was added to the registry by the application installer. Without the correct lic details, you can instantiate a control at runtime, but you cannot at design time.
So, the most likely way to fix this problem is to re-run the original Flex Grid installer.