많은 버튼위에 캡션을 지정해야하는데
이를 일일이 코딩하지 않고 방법을 찾으려고 합니다.
아주 어렵네요.
다음처럼 구현해보았는데 tcomponent와 tbutton의 type이 틀려서
컴파일오류가 납니다.(^^! 당연히 나겠지요)
방법이나 대안은 없는지요.
고수님들의 도움을 구합니다.
var
I: Integer;
Temp: tbutton;
begin
for I := ComponentCount - 1 downto 0 do
begin
if (Components[I] is tbutton) then
begin
Temp := Components[I]; //오류발생//
temp.caption := '단추'+ inttostr(i);
end;
end;
end;
if (Components[I] is tbutton) then
이거 다음에
(Components[I] as tbutton).caption := 'xxx';
이렇게 해보세요