H hubdog Unregistered / Unconfirmed GUEST, unregistred user! 2000-04-21 #2 如果是内存流的话,可以 function TForm1.LoadFromStream(const AStream: TStream): HRESULT; begin AStream.seek(0, 0); Result := (WebBrowser1.Document as IPersistStreamInit).Load(TStreamAdapter.Create(AStream)); end;
如果是内存流的话,可以 function TForm1.LoadFromStream(const AStream: TStream): HRESULT; begin AStream.seek(0, 0); Result := (WebBrowser1.Document as IPersistStreamInit).Load(TStreamAdapter.Create(AStream)); end;
W wjing Unregistered / Unconfirmed GUEST, unregistred user! 2000-04-22 #4 hubdog的方法用了不行; 怎么听? 我把硬盘上网页读取到内存,想利用WebBrowser显示.我用GetTextBuf函数就是不行.
D DreamTiger Unregistered / Unconfirmed GUEST, unregistred user! 2000-11-03 #7 我的方法: IDoc:IHtmlDocument2; WebBrowser1.QueryInterface(IHtmlDocument2,IDoc); if IDoc <> nil then begin IDoc.Body.OuterHtml := Text;//这里,我把内存中的文件读到一个字符串Text中。 end
我的方法: IDoc:IHtmlDocument2; WebBrowser1.QueryInterface(IHtmlDocument2,IDoc); if IDoc <> nil then begin IDoc.Body.OuterHtml := Text;//这里,我把内存中的文件读到一个字符串Text中。 end