遍列窗口的所以输入筐 ( 积分: 50 )

  • 主题发起人 主题发起人 foxczf
  • 开始时间 开始时间
F

foxczf

Unregistered / Unconfirmed
GUEST, unregistred user!
如何遍列窗口的所以输入筐,如 edit,ListBox,ComboBox,DateTimePicker等,
并等到他们当前的输入值
 
如何遍列窗口的所以输入筐,如 edit,ListBox,ComboBox,DateTimePicker等,
并等到他们当前的输入值
 
看一下如下代码:
var
TmpList1,TmpList2,TmpList3,TmpList4, : TStringList;
i : integer;
begin
TmpList1 := TStringList.Create;
TmpList2 := TStringList.Create;
TmpList3 := TStringList.Create;
TmpList4 := TStringList.Create;
for i := 0 to Component.Count -1 do
begin
if Sender is Tedit then
begin
TmpList1.Add((Sender as Tedit).Text);
end;
if Sender is TListBox then
begin
TmpList2.Add ....
end;
....
end;
 

Similar threads

后退
顶部