Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.11.28;
Скачать: CL | DM;

Вниз

IHTMLWindow.document   Найти похожие ветки 

 
RuberoiD ©   (2002-10-03 13:05) [0]

Такая проблема:

procedure TForm1.Button1Click(Sender: TObject);
var
i : integer;
s : string;
ov : OleVariant;
iDoc : IHTMLDocument2;
iDisp : IDispatch;
iFrames2 : IHTMLFramesCollection2;
iWindow2 : IHTMLWindow2;
iFrameDoc : IHTMLDocument2;
begin
iDoc:=Form1.Browser1.ControlInterface.Document as IHTMLDocument2;
iFrames2:=iDoc.frames as IHTMLFramesCollection2;
for i:=1 to iFrames2.length do
begin
ov:=i-1;
iDisp:=iFrames2.item(ov);
iDisp.QueryInterface(IHTMLWindow2,iWindow2);
iWindow2.document.QueryInterface(IHTMLDocument2,iFrameDoc);
{ВЫДАЕТ ОШИБКУ "НЕТ ДОСТУПА"}
s:=iFrameDoc.title;
end;
end;

заранее благодарен


 
int64 ©   (2002-10-04 00:43) [1]

Просто альтернативный вариант.

procedure TForm1.Button1Click(Sender: TObject);
var
i : integer;
s : string;
iDoc : IHTMLDocument2;
iFrames2 : IHTMLElementCollection;
IFrame: HTMLFrameElement;
iFrameDoc : IHTMLDocument2;
begin
iDoc:=Form1.Browser1.Document as IHTMLDocument2;
iFrames2:=IHTMLElementCollection(HTMLDocument(iDoc).All.Tags("FRAME"));
for i:=0 to iFrames2.length-1 do
begin
IFrame:= iFrames2.item(i,varEmpty) as HTMLFrameElement;
iFrameDoc:=IFrame.document as IHTMLDocument2;
{далее работаем с документом
каждого фрейма}
end;
end;


 
RuberoiD ©   (2002-10-04 08:46) [2]

Спасобо!



Страницы: 1 вся ветка

Текущий архив: 2002.11.28;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.028 c
1-93084
LongIsland
2002-11-16 18:31
2002.11.28
Фокус


4-93296
__q1
2002-10-17 17:48
2002.11.28
Работа с консолью


3-92891
Кирилка
2002-11-10 15:00
2002.11.28
Как подключиться к 8 в Delphi6?


14-93246
Николай Быков
2002-11-10 16:29
2002.11.28
....................


3-92874
Dbrf
2002-11-10 13:51
2002.11.28
Присвоение значения части даты