加到全局变量:FDate,Ftime,q,i,j,k,F,M,S,HM: Integer; 累积运行时间代码如下: if M = 59 then begin F:=F+1; if F = 59 then begin S:=S+1; F:=0; end; M:=0; end; M:=M+1; Label4.Caption:='XX提醒你CE已运行 '+inttostr(S)+'小时'+inttostr(F)+'分'+inttostr(M)+'秒' 年月日时间代码如下: ss:=FormatDateTime(' yyyy 年 MM 月 dd 日 hh : nn : ss ',now); MainForm.Caption:='XX提示当前时间:'+ss;