为什么我用Delphi刚刚运行的时候没有问题,但是关闭再次运行后出错

[FatalError]Projecttime.dpr(5):Couldnotcompileusedunit'time.pas'代码是:unittime;interfac... [Fatal Error] Projecttime.dpr(5): Could not compile used unit 'time.pas'
代码是:
unit time;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, ExtDlgs;

type
TForm1 = class(TForm)
Label1: TLabel;
Button1: TButton;
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Timer1Timer(Sender: TObject);
var
datetime:Tdatetime;
str:string;
begin
datetime:=time;
str:=timetostr(datetime);
Label1.caption:=str;

end;

procedure TForm1.Button1Click(Sender: TObject);
begin
timer1.Enabled:=not timer1.Enabled;
end;

end.
展开
 我来答
百度网友3b60ea87f
2012-03-01 · TA获得超过152个赞
知道小有建树答主
回答量:284
采纳率:100%
帮助的人:172万
展开全部
Fatal Error] Projecttime.dpr(5): Could not compile used unit 'time.pas'
这句是说time.pas无法编译,上面应该还有个错误消息提示,请你把这个错误消息提示贴出来
更多追问追答
追问
我再次编译就把错误指到划横线的地方了
追答
让我多看点代码呀
yzhsgh
2012-03-01 · TA获得超过2.7万个赞
知道大有可为答主
回答量:1789
采纳率:33%
帮助的人:2187万
展开全部
time.pas文件有问题。另外,计时器代码可做如此简化:
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Label1.caption:=timetostr(gettime);
end;
追问
那为什么刚刚编写完了运行可以,关闭后再次打开运行就出错了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
windblast
2012-02-29 · 知道合伙人软件行家
windblast
知道合伙人软件行家
采纳数:5633 获赞数:13621
毕业于空军第一航空学院电子专业,1991年开始接触电脑,从事多年计算机编程,具有较丰富的经验。

向TA提问 私信TA
展开全部
[Fatal Error] Projecttime.dpr(5): Could not compile used unit 'time.pas'
从这段错误提示来看,你没有引入time.pas这个文件。
追问
那怎样引入,刚刚编写完了运行可以,关闭后就出错了,谢谢先了
追答
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, ExtDlgs, time;

注意,你需要找到time.pas,可能在delphi安装目录下,也可能是某个自定义的单元文件。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式