N
netnice
Unregistered / Unconfirmed
GUEST, unregistred user!
说明:content是要显示的html字符串
browser是TWebBrowser控件
作用是将html写入浏览器控件使它显示出来。
procedure TfrmMain.ShowHtml(Browser:TWebBrowser;content: string);
var
vv: Variant;
HTMLDocument: IHTMLDocument2;
begin
vv := VarArrayCreate([0,0],varVariant);
vv[0] := content;
HTMLDocument := browser.Document as IHTMLDocument2;
HTMLDocument.write(PSafeArray(TVarData(vv).VArray)); //这个地方出错
// 说 PSafeArray没定义。 psafearray好象是类型转换的。
HTMLDocument.charset := 'gb2312';
HTMLDocument.close;
end;
browser是TWebBrowser控件
作用是将html写入浏览器控件使它显示出来。
procedure TfrmMain.ShowHtml(Browser:TWebBrowser;content: string);
var
vv: Variant;
HTMLDocument: IHTMLDocument2;
begin
vv := VarArrayCreate([0,0],varVariant);
vv[0] := content;
HTMLDocument := browser.Document as IHTMLDocument2;
HTMLDocument.write(PSafeArray(TVarData(vv).VArray)); //这个地方出错
// 说 PSafeArray没定义。 psafearray好象是类型转换的。
HTMLDocument.charset := 'gb2312';
HTMLDocument.close;
end;