CxClasses 单元会自动添加到“使用”部分中
当我尝试构建项目时,CxClasses 单元会自动添加到“使用”部分中。由于这个原因,我在运行 exe 时遇到错误。
我不想在使用中包含 CxClasses。我应该如何避免这个事情?
感谢您的帮助..
问候, 纳伦
When i trying to build the project CxClasses unit is automatically gets added in Uses section. Due to which i am getting error while running the exe.
I dont want to include CxClasses in uses. How should i avoid this thing??
Thanks for help..
Regards,
Naren
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的表单/框架/数据模块上有一个组件需要该单元。当 IDE 设计者保存表单/框架/数据模块时,它还会确保所需的单元包含在 use 子句中。删除组件,问题就不会再出现。
There is a component on your form/frame/datamodule which requires the unit. When the IDE designer saves the form/frame/datamodule it also makes sure the required unit is included in the uses clause. Delete the component(s) and the problem should not appear again.
您的表单上有一个来自或使用该单元的组件。 IDE 会自动添加它,以便您的代码能够编译。
您需要从不同的角度调查运行时错误。这不太可能仅仅是由包含该单元引起的。
You have a component on your form that comes from or uses that unit. The IDE adds it automatically so that your code will compile.
You'll need to investigate your run-time error from a different angle. It's unlikely to be caused solely by including that unit.