WebBrowser的入门使用,对您很简单的。(100分)

  • 主题发起人 主题发起人 景冰
  • 开始时间 开始时间

景冰

Unregistered / Unconfirmed
GUEST, unregistred user!
var mydoc IHTMLDocument2
begin
HTMLDocument := WebBrowser1.Document as IHTMLDocument2;
这时候编译会认为IHTMLDocument2为undeclared identifier.
我如何定义IHTMLDocument2对象?请各位帮助
 
需要
uses shdocvw , mshtml,....

IHTMLDocument2是在mshtml中声明的(有些忘了)。

 
请将 ../borland/delphi5/source/internet/mshtml.pas 拷贝到你的应用程序
目录;或者将delphi的seach目录中加入路径[../borland/delphi5/source/internet/]
 
uses mshtml即可。
 
多人接受答案了。
 
后退
顶部