以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  drawcell中怎么排除汇总行  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=53560)

--  作者:jpg7
--  发布时间:2014/7/10 17:34:00
--  drawcell中怎么排除汇总行

If e.Row.Isnull("下单日期") = True Then
    If e.Row("催货") = True Then
        e.Style = "催货"
    End If
End If

 

 

怎么加一个条件使row排除汇总行



--  作者:有点甜
--  发布时间:2014/7/10 17:36:00
--  
 
If e.Row.Isgroup = False AndAlso e.Row.Isnull("下单日期") = True Then
    If e.Row("催货") = True Then
        e.Style = "催货"
    End If
End If