procedure TForm1.Button1Click(Sender: TObject);
var
Range: IHTMLTxtRange;
begin
WebBrowser1.Navigate('About:Blank');
Range := ((WebBrowser1.Document as IHTMLDocument2).body as
IHTMLBodyElement).createTextRange;
Range.collapse(False);
Range.pasteHTML(' Hello!'');
end;
세몬 님이 쓰신 글 :
: 제목처럼 actibeXform에서 삽입되여있는 브라우저의 url이나 의 값을 바구는걸 봤는데요
: document에 적을수도 없을가요?
:
: 꾸벅