类定义如下:
  TThreadHandleMessage = class(TThread)   private
    procedure HandleMessage(buf:string; strReceiver:string);   Protected
    procedure Execute;override;
   public
    buffer,strReceiver:String ;
    constructor Create(buf:string; strRec:String);virtual;  end;
在其中的handlemessage过程中使用LoadXMLDocument函数时提示错误,“Project demo.xee raised exception class EOleException with message 'Microsoft MSXML is not installed. process stoped. use step or run to continue.”实际上msxml已经安装。而且如果不在这个类中调用LoadXMLDocuemnt函数,而在窗口类中调用就没有问题?各位能给个提示不?还有有其他办法可以实现http协议数据的访问吗?除了webbrowser类,如socket类可以实现吗 ?