PROBLEMAS EM COLORIR O GRID

PI321 23/02/2012 10:19:06
#395351
PESSOAL NA TELA DE CADASTRO DOS PROJETOS DO MEU SISTEMA EU TENHO UMA COMBOBOX , COM BINDING SOURCE NA TABELA STATUS_PROJETOS ONDE O VALOR QUE APARECE é O ESCRITO ([Ô]CONCLUIDO ,PENDENTE , ETC..[Ô]) MAIS O VALOR DELA é NUMéRICO... QUANDO EU COLOCO A TABELA ELA ME APRESENTA ISTO NO GRID COMO CÓDIGO .. EU CRIEI ESSA SUB PARA COLORIR AS QUE SAO EM ANDAMENTO , CONCLUIDO ETC... , PORéM EU PRECISO QUE ELA VA ATé A COLUNA CERTA.. ELA PERCORRE AS COLUNAS E SEMPRE QUE ELA ACHA ESSA COMBINAÇÃO ELA COLORE COM AQUELA COR..POR FAVOR SE VCS PUDEREM ME AJUDAR SERIA MTO BEM VINDA ...

OBRIGADO A TODOS MAIS UMA VEZ .


For Each row As DataGridViewRow In Me.dgvprojetos.Rows
If Not row.IsNewRow Then
For Each cell As DataGridViewCell In row.Cells
If cell.Value.ToString.ToUpper.Contains([Ô]56[Ô]) Then
With Me.dgvprojetos.Rows(row.Index).DefaultCellStyle
.BackColor = Color.SpringGreen
.Font = New Font([Ô]Verdana[Ô], 12)
End With
Exit For
End If
Next
End If
ALTAIR148 23/02/2012 10:52:50
#395363
Resposta escolhida
Veja se assim funciona.:

 For Each row As DataGridViewRow In Me.DataGridView1.Rows

If Not row.IsNewRow Then
For Each cell As DataGridViewCell In row.Cells([Ô]Aqui Fica o nome da coluna[Ô]).Value
If cell.Value.ToString.ToUpper.Contains([Ô]56[Ô]) Then
With Me.DataGridView1.Rows(row.Index).DefaultCellStyle
.BackColor = Color.SpringGreen
.Font = New Font([Ô]Verdana[Ô], 12)
End With
Exit For
End If
Next
End If
Next
PI321 23/02/2012 11:31:16
#395370
Unable to cast object of type [ô]System.Int32[ô] to type [ô]System.Collections.IEnumerable[ô].

após eu ter colocado o nome.value

ele da erro na linha com esses dizeres que estão ai em cima
nao consegui resolver alguma sugestão ?

achei estranho ele dar este erro
PI321 23/02/2012 15:45:45
#395408
pessoal ainda estou na pesquisa para este erro .. se alguem souber como ajudar por favor postem aqui obrigado .
ALTAIR148 23/02/2012 16:26:32
#395412
fiz um exemplo aqui em anexo. Agora é so adaptar.
PI321 23/02/2012 16:29:17
#395413
Obrigado Altair .. mais uma vez .. me ajudou mto
Tópico encerrado , respostas não são mais permitidas