sections可以理解成区域吧?
就是报表中从上至下report header, page header, detail, report footer, page footer,当然如果你有group的话section就还会多。reportobjects应该是从左到右的控件顺序

解决方案 »

  1.   

    reportobjects的index你好像说的不对!
      

  2.   

    Sections就是你报表的节数,如有页眉的话,页眉就是0,其它的类同
      

  3.   

    With poCRReport
            For intSecCount = 1 To .Sections.Count
                With .Sections(CInt(intSecCount)).ReportObjects
                    For intObjCount = 1 To .Count
                        .Item(CInt(intObjCount)).ConditionFormula(65) = "Chr(9)"
                    Next
                End With
            Next
        End With原来用VB写的程序,用在web报表上遍利所有控件,去掉控件的tooltip提示
    不知道对你有没有用