Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/03/2011, 19:31
chuchufuentes
 
Fecha de Ingreso: mayo-2008
Mensajes: 353
Antigüedad: 16 años
Puntos: 3
Listo: colocar saldo rojo en columna de gridview

Gracias a todos por responder y asi termine de solucionarlo con ayuda de ustedes

If (e.Row.RowType <> ListItemType.Header And e.Row.RowType <> ListItemType.Pager) Then
Dim data As String = e.Row.Cells(3).Text
If IsNumeric(data) Then
If data > 0 Then
e.Row.Cells(3).BackColor = Drawing.Color.Red
End If
End If
End If
gracias