Вниз
Скачать: CL | DM;

TWebBrowser   Найти похожие ветки 

 
Dunkan ©   (2002-10-23 00:33) [0]

как в TWebBrowser сохранить исходник загруженного в него файла???


 
AL2002 ©   (2002-10-23 00:36) [1]

var
HTMLDocument: IHTMLDocument2;
PersistFile: IPersistFile;
begin
...
HTMLDocument := WebBrowser1.Document as IHTMLDocument2;
PersistFile := HTMLDocument as IPersistFile;
PersistFile.Save(StringToOleStr("test.htm"), True);

while HTMLDocument.readyState <> "complete" do
Application.ProcessMessages;
...
end;


 
AL2002 ©   (2002-10-23 00:54) [2]

procedure TForm1.WebBrowser1DocumentComplete(Sender: TObject;
const pDisp: IDispatch; var URL: OleVariant);
var I2: IHTMLDocument2;
begin
WebBrowser1.Document.QueryInterface(IHTMLDocument2, I2);
Memo1.Lines.Text:=I2.body.outerHTML;
end;



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

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.013 c
1-11173
ИгорьК
2002-10-24 15:13
2002.11.04
Off: Юрию Зотову - плиз, свяжитесь со мной!!!


4-11560
Igor_i
2002-09-23 13:37
2002.11.04
Как скопировать в буфер имена всех файлов и папок корня CD


6-11367
dr
2002-09-04 22:40
2002.11.04
Сокеты...


14-11419
RealDummy
2002-10-15 01:09
2002.11.04
Найти производную от x в степени x


6-11362
BAHO
2002-09-03 00:39
2002.11.04
Трафик




   Наверх