G
ghj1976
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);
var
ss : string;
begin
ss := 'inttostr(10)'
label1.Caption := ss;
end;
我如何实现label1.Caption的显示的是“10”,而不是"inttostr(10)"????
不要告诉我用label1.Caption := inttostr(10);
var
ss : string;
begin
ss := 'inttostr(10)'
label1.Caption := ss;
end;
我如何实现label1.Caption的显示的是“10”,而不是"inttostr(10)"????
不要告诉我用label1.Caption := inttostr(10);