大侠请看:使用一个delphi7打开一个以前版本(具体多少版本也不知道)的工程,编译运行时到下面这一段就出错,显示HTTP.Request没有ProxyServer属性,为什么啊?
我需要怎么做呢?
   if GlobalProxyServerIP <> '' then
     begin
      //http.Host := GlobalProxyServerIP;
      //http.Port := StrToInt(GlobalProxyServerPort);
      HTTP.Request.ProxyServer := GlobalProxyServerIP;
      HTTP.Request.ProxyPort := StrToInt(GlobalProxyServerPort);
     end;