有没有可能 此table 并不是你想要控制的表 table.tablename not yours what needed

解决方案 »

  1.   

    你的代码看不到问题,请确认下面几个方面:
    1,是否有同名的表?你检查过吗?
    2,这个表有几条记录?
    3,这个表是和主表相关的子表吗?
    或者提供你的SOURCE和属性设置到[email protected]
      

  2.   

    check table master datasource 
      

  3.   

    1,没有同名的表
    2,这个表肯定有记录,不少于一条.
    3,这个表只做了其他表的master  
      

  4.   

    有可以是table对象不是同一个。
    请贴上完整一些的代码,包括你取/判断记录字段值。
      

  5.   

    你的写法有问题,不过解决起来很简单.
    begin
      with Table do
        while not eof do 
          next;
    end;
      

  6.   

    是否把Table.first重复触发了?
      

  7.   

    呵呵......你肯定是疏忽了,把连接错了 datasource
      

  8.   

    各位大虾们,他的语句的确有问题,应改为:
    begin
      Table1.First;
      with Table1 do
        while not eof do 
        begin
          ...
          next;
        end;
    end;
      

  9.   

    建议查查该Table的事件,将所有事件屏蔽掉试试