下载了一个飞鸽传书的delphi版本 源代码打开时报错,不知道为什么
Error reading PClient->MaxLineAction:Property MaxLineAction does not exist.Ingore the error and continue?NOTE:....Error reading PServer->CommandHandlers:Property Commandhandlers does not exist.Ingore the error and continue?NOTE:....
.....像这种错误大概有七八个报错什么原因呢
我win7 X86 ,用的CodeGear RAD Studio 工具

解决方案 »

  1.   

    Code is developed using  Indy 9  while your current environment contains Indy 10 version. Either upgrade your code to comply with Indy 10 or go with Indy 9.Hope it helps.Thanks,Ali
      

  2.   

    我卸载了indy10然后下载了indy9 ,打开Indy70.dpk编译完
    把路径添加到Libray path重新打开我的源代码报错:Class TIdUDPClient not found
    Class TIdTCPClient not found
    .....我删掉添加的路径,重新打开源代码,还是报同样的错,我添加的路径不对么?
      

  3.   

    in Indy 9 TIdTCPClient is defined in unit IdTCPClient.pas. Make sure you add IdTCPClient in uses section of file containing reference to it.Similar applies to TIdUDPClient as it is defined in unit IdUDPClient.pas. Please review the documentation of Indy 9 and try to find out where classes have been declared and appropriately use the units declaring them.
    Hope it helps.//Ali
      

  4.   

    uses里面都引用了但还是报错说找不到TIdUDPClient
    TIdUDPServer
    TIdTCPClient
    TIdTCPServer
      

  5.   

    打开indy70,右键选择了install弄好了