The ComponentCount of a component contains the same number of items as in the Components list for that component, and is always 1 more than the highest Components index, because the first Components index is always 0
이라고 한다. ㅋㅋㅋㅋ
그리고, 자식들의 갯수는 자신을 포함한 개수이니 - 1을 하면안된다.
즉,
for i := 0 to Pane1.ControlCount do
begin
if Components[i] is TEdit then
TEdit(Components[i]).Text := '';
//Do SomeThing..
end;
안녕하세요 하얀까마귀 입니다.
Components 와 ComponentCount 를 이용하시면 될것 같네요..
자세한 사항은 도움말을 참고하세요..
여기에서도 보시면 FindComponent 같은걸로 검색하시면 무척 많은자료를
찾으실수 있을껍니다.
그리고 Form 에 보시면 FindGlobalComponent라는 함수가 있거든요.
이것도 한번 보세요.. 잘 모르시는 함수인데... 유용하게 쓸수 있는 함수입니다.
그럼.. 즐거운시간 되세요.