初级问题 (1分)

  • 主题发起人 主题发起人 emilchan
  • 开始时间 开始时间
E

emilchan

Unregistered / Unconfirmed
GUEST, unregistred user!
有这样一段代码,想实现点BOTTON在lable1里显示时间:
procedure TForm1.button1Click(Sender:TObject);
begin
Lable1.Caption:='当前时间';
Lable2.Caption:=TimeToStr(Time);
Lable1.Visible:=true;
Lable2.Visible:=true:
end;
但却告诉我[Error] Unit1.pas(36): Undeclared identifier: 'Lable1',怎么回事??

 
label1吧,看看是不是写错了
 
[:)]lable2.caption:=FormatDateTime('yyyy"-"mm"-"dd',Date);
 
sorry
procedure TForm1.button1Click(Sender:TObject);
begin
Label1.Caption:='当前时间';
Label2.Caption:=DateTime('yyyy"-"mm"-"dd',Date);
Label1.Visible:=true;
Label2.Visible:=true:
end;



 
哎,初学,真不细心啊~
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
551
import
I
I
回复
0
查看
508
import
I
后退
顶部