当表格显示access中的表时,其中的逻辑字段是用True和False来表示的,怎么能用其他格式来显示,比如√和×.

解决方案 »

  1.   

    dim irow as long
    with hflexgrid
        for irow=1 to .rows-1
            if .textmatrix(irow,2)="true" then .textmatrix(irow,2)="√"
            if .textmatrix(irow,2)="false" then .textmatrix(irow,2)="×"
        next irow
    end with
      

  2.   

    绑定方式下:
    strSQL = "select iif(TrueFalseField, ""√","×") as NewFieldName, ......"
      

  3.   

    帮你up大家来看看这个帖http://expert.csdn.net/Expert/topic/2116/2116432.xml?temp=.3066828