OBTER O MENOR VALOR DO GRID

VINICIUSVB 04/07/2011 13:14:01
#378433
Pessoal boa tarde

Estou tentanto colocar em negrito o menor valor da linha em um grid. Alguém poderia me ajudar?

Coluna1 Coluna2 Coluna3
1,50 1,30 1,70
JONATHANSTECKER 04/07/2011 14:28:48
#378439
Resposta escolhida
Coloque esta rotina após carregar o DataGridView.
For Each Linha As DataGridViewRow In Me.DataGridView1.Rows
Dim MaiorValor As Double = 0
Dim CelulaIndex As Integer = 0
For Contador As Integer = 0 To Linha.Cells.Count - 1
If CDbl(Linha.Cells(Contador).Value) > MaiorValor Then CelulaIndex = Contador
Next
Linha.Cells(CelulaIndex).Style.Font = New Font([Ô]Microsoft Sans Serif[Ô], 8, FontStyle.Bold)
Next
VINICIUSVB 05/07/2011 17:44:06
#378543


Valeu JONATHANSTECKER muito obrigado.
Tópico encerrado , respostas não são mais permitidas