本帖最后由 liyinghua163 于 2011-03-07 21:28:00 编辑

解决方案 »

  1.   

    貌似那个图看不见,我把内容发上吧
    access vialatian at adress 0065E46C in module 'CETest.exe'.read of adress 00000000
      

  2.   

    貌似图片看不见啊,我写在下面
    access vialatian at adress 0065E46C in module 'CETest.exe'.read of adress 00000000'CETest.exe'就是用delphi做的上位机软件。
      

  3.   

    read of adress 00000000表明类或指针没有初始化就调用了类的正确用法为:var
      T: TObject;
    begin
      T := TObject.Create;
      try
        // Same Code...
      finally
        T.Free;
      end;
    end;