怎么样用循环语句来给许多的edit文本赋值!(50分)

  • 主题发起人 主题发起人 hohailiu
  • 开始时间 开始时间
H

hohailiu

Unregistered / Unconfirmed
GUEST, unregistred user!
怎么样用循环语句来给许多的edit文本赋值![:)]
 
参考
http://www.delphibbs.com/delphibbs/dispq.asp?lid=1257731
 
for I := 1 to 10 do
TEdit(FindComponent('Edit' + IntToStr(I))).text := inttostr(i)
 
用Tag属性:
for i:= 1 to 10 do
if (Controls is TEdit) and (Controls.Tag = i)
then (Controls as TEdit).Text:=inttostr(i);
 
for I := 1 to form.componet.count-1 do
TEdit(FindComponent('Edit' + IntToStr(I))).text := inttostr(i)
 
for I := 1 to 10 do
TEdit(FindComponent('Edit' + IntToStr(I))).text := inttostr(i)
 
for I := 1 to 10 do
TEdit(FindComponent('Edit' + IntToStr(I))).text := inttostr(i)
 

Similar threads

S
回复
0
查看
849
SUNSTONE的Delphi笔记
S
S
回复
0
查看
781
SUNSTONE的Delphi笔记
S
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
915
SUNSTONE的Delphi笔记
S
后退
顶部