Pages

Friday, July 23, 2010

Memberi Warna Baris Pada DataGridView

Coding berikut ini untuk memberi warna background baris pada DataGridView berdasarkan nilai atau teks tertentu yang terdapat pada cell.

For Each row As DataGridViewRow In DataGridView1.Rows
  If Not row.IsNewRow Then
    If Not row.Cells(1).Value Is DBNull.Value Then
      If row.Cells(1).Value = "Yes" Then
        row.DefaultCellStyle.BackColor = Color.Red
      End If
    End If
  End If
Next

4 comments:

  1. gak ada pengaruhnya mas,,, kalau memberi warna tiap baris yang ganjil gimana mas?

    ReplyDelete
  2. Tinggal ubah aja cell nya bro menjadi n+2.

    ReplyDelete
  3. itu simpan sintak itu di datagrid nya atau boleh di commondbutton

    ReplyDelete
  4. butuh software klik sini ajaj www.surgasoftware.com

    ReplyDelete

 

Blogger news

About Me

My photo
Palembang, Sumatera Selatan, Indonesia
Seorang yang ingin terus belajar.