08/06/2013, 11:23
|
| | | Fecha de Ingreso: mayo-2013 Ubicación: Guanajuato
Mensajes: 302
Antigüedad: 11 años, 6 meses Puntos: 5 | |
Respuesta: Error al pintar celdas en GridView Ya lo solucione y es de esta manera:
Protected Sub gv_cantidades_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gv_cantidades.RowDataBound
Try
If CDbl(e.Row.Cells(7).Text) < 0 Then
MsgBox("REVISAR VOLUMENES EXCEDENTES")
e.Row.Cells(7).BackColor = Drawing.Color.DarkRed
End If
Catch ex As Exception
End Try
End Sub
End Class |