编程论坛
注册
登录
编程论坛
→
Delphi论坛
Integer数据类型的输出
ping16002
发布于 2008-06-20 14:53, 1497 次点击
Integer类型的数据通过delphi中的edit输出
如:
fh:byte
edit.text:fh
这样有错;
正确的该怎么输出,请教
3 回复
#2
xu2000
2008-06-20 15:58
fh: Integer;
edit.text := StrToInt(fh)
#3
koolism
2008-06-20 20:11
IntToStr
#4
ping16002
2008-06-23 09:34
谢谢你们了
1