안녕하세요
HTML 페이지를 EmbeddedWB1 컨트로를 이용해서 불러들였습니다.
for 문으로 특정 textarea 박스에 값을 넣으려고 합니다.
근데 자동으로 포커스가 입력이 되지를 않습니다.
이와같은 문제는 어찌해야하나요?
예제소스:
tags := EmbeddedWB1.OleObject.Document.Body.getElementsByTagName('textarea');
for i := 0 to tags.Length - 1 do
begin
if (tags.Item(i).Name = 'contents') then begin
tags.item(i).focus(); // 포커스에러가 납니다.
tags.Item(i).value := 'zzzzz';
break;
end;
end; // FOR 문 종료
위 문제를 해결하고 싶습니다.
고맙습니다. ^^*