Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/02/2006, 10:58
pineda
 
Fecha de Ingreso: septiembre-2005
Mensajes: 73
Antigüedad: 19 años, 5 meses
Puntos: 0
Fondo Datagrid

Puedes usar el evento ItemdataBound del grid.
Yo lo he manejado asi:

Código:
private sub gridTareas_ItemDataBound(....)
if((e.Item.ItemType = ListItemType.Item) or (e.Item.ItemType = ListItemType.AlternatingItem)) then
if (e.Item .Cells (0).Text = "Valor") then
       e.Item .Cells (0).BackColor = System.Drawing .Color .LightSteelBlue 
       e.Item .Cells (0).ForeColor = System.Drawing .Color.DarkBlue
Bueno, algo mas o menos asi.... porque lo tengo en c#

Espero te sirva
__________________
Henry :-D