**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
11天前关闭
Improve this question
我面对这个错误像30分钟,我找不到解决方案。有人能帮帮我吗?
我在谷歌上搜索了一下,但没有找到解决办法。
**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
11天前关闭
Improve this question
我面对这个错误像30分钟,我找不到解决方案。有人能帮帮我吗?
我在谷歌上搜索了一下,但没有找到解决办法。
1条答案
按热度按时间ogsagwnx1#
TForm
是在VCL的Forms
单元中声明的,它在单元的interface
部分的uses
子句中丢失。这就是为什么你会得到一个关于TForm
未声明的错误。修复这个问题应该也能解决
Perform()
和Close()
的错误。关于其他“未声明的标识符”错误:
clWindow
在Graphics
单元中声明。FormatDateTime()
、Now()
和DateToStr()
在SysUtils
单元中声明。MessageDlg()
在Dialogs
单元中声明。确保这些单元也在
uses
子句中,最好在单元的implementation
部分,而不是interface
部分。