天龙语Activexclass没找到
Dragon naturally speaking Activex class not found
我目前正在处理提供给我的一些旧 (Delphi) 源代码。我目前正在尝试恢复旧代码所需的所有库。一种这样的依赖是定义 "DNSTools_TLB" library.
我发现前缀“_TLB”是 Delphi imported/added ActiveX 库,所以我将 Dragon Activex 库导入到我的代码中。
在此之后我仍然收到错误提示 "Class TDgnDictCustom not found"(调用其他 DNS classes 不会收到此错误)
我也尝试在源代码和库中重命名 class TDgnDictCustom,但问题仍然存在。
我能得到一些关于如何resolve/trace这个错误的帮助吗..
ps:这是我第一次post来这里,所以如果我违反了任何规则,请告诉我。
编辑:这是我得到的错误
"Class TDgnDictCustom not found. Ignore the error and continue? NOTE: Ignoring the error may cause components to be deleted or property values to be lost"
Class TDgnDictCustom not found. Ignore the error and continue? NOTE: Ignoring the error may cause components to be deleted or property values to be lost.
表单设计者在尝试打开表单时报告此错误,并且该表单引用了尚未在 IDE 中注册的组件。它告诉您的是 .dfm 文件包含对 class TDgnDictCustom
实例的引用,但没有设计时包注册 class。
您可以通过找出您的 IDE 中缺少哪个设计时包并安装它来解决这个问题。您可能需要自己创建一个设计时包。或者您的程序的原始开发人员可能已经这样做了。很难用我们所知道的更具体一点。
我目前正在处理提供给我的一些旧 (Delphi) 源代码。我目前正在尝试恢复旧代码所需的所有库。一种这样的依赖是定义 "DNSTools_TLB" library.
我发现前缀“_TLB”是 Delphi imported/added ActiveX 库,所以我将 Dragon Activex 库导入到我的代码中。
在此之后我仍然收到错误提示 "Class TDgnDictCustom not found"(调用其他 DNS classes 不会收到此错误)
我也尝试在源代码和库中重命名 class TDgnDictCustom,但问题仍然存在。
我能得到一些关于如何resolve/trace这个错误的帮助吗..
ps:这是我第一次post来这里,所以如果我违反了任何规则,请告诉我。
编辑:这是我得到的错误 "Class TDgnDictCustom not found. Ignore the error and continue? NOTE: Ignoring the error may cause components to be deleted or property values to be lost"
Class TDgnDictCustom not found. Ignore the error and continue? NOTE: Ignoring the error may cause components to be deleted or property values to be lost.
表单设计者在尝试打开表单时报告此错误,并且该表单引用了尚未在 IDE 中注册的组件。它告诉您的是 .dfm 文件包含对 class TDgnDictCustom
实例的引用,但没有设计时包注册 class。
您可以通过找出您的 IDE 中缺少哪个设计时包并安装它来解决这个问题。您可能需要自己创建一个设计时包。或者您的程序的原始开发人员可能已经这样做了。很难用我们所知道的更具体一点。