HOME > .NET Framework > Forum > ช่วยแนะนำการใส่สีให้กับช่อง column M ที่มีค่าเท่ากับ 01 ให้เป็นสีแดง ค่า 01 นี้ ผมจัด format ให้เหลือแค่เดือน type คือ datetime
ช่วยแนะนำการใส่สีให้กับช่อง column M ที่มีค่าเท่ากับ 01 ให้เป็นสีแดง ค่า 01 นี้ ผมจัด format ให้เหลือแค่เดือน type คือ datetime
For r As Integer = 0 To Me.DataGridView1.Rows.Count - 1
If Convert.ToDateTime(Me.DataGridView1.Rows(r).Cells(2).Value).ToString("MM", Globalization.CultureInfo.CreateSpecificCulture("en-US")) = "01" Then
Me.DataGridView1.Item(0, r).Style.BackColor = Color.LightSkyBlue
End If
Next