PROBLEMAS EM COLORIR O GRID
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
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
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
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
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
pessoal ainda estou na pesquisa para este erro .. se alguem souber como ajudar por favor postem aqui obrigado .
fiz um exemplo aqui em anexo. Agora é so adaptar.
Obrigado Altair .. mais uma vez .. me ajudou mto
Tópico encerrado , respostas não são mais permitidas