楼主说的不是很明白,请说明白下.占个位子.

解决方案 »

  1.   

    就是在水晶报表里打出像 CHECKBOX那种效果!不过我有解决方法了。谢谢。To display a checkbox on the report, create a new formula field and insert the following formula. 
    If {Table.Field} = True Then
             'Display the checkbox of your choice here
             Formula = Chr(254)
    Else
             'Display empty checkbox
             Formula = Chr(168)
    End If
      

  2.   

    大家再没有人会这个东西啊?
      

  3.   

    我那样做原理是对的,但是不知道为什么没有显示出来。