Visual Basic 2005 BasicsIf you are new to Visual Basic programming with version 2005, this is the place to start your questions. For questions about the book:
Beginning Visual Basic 2005 by Thearon Willis and Bryan Newsome, ISBN: 0-7645-7401-9 please, use this forum instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Visual Basic 2005 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Hi, I bound DataSet to DataGridview to display data from SQL DB, I want to change row color to blue, red or write based on row data retrived if the row data meet some condition, any clue?
Private Sub dgGrid_RowPrePaint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewRowPrePaintEventA rgs) Handles dgGrid.RowPrePaint
Dim tmpCell As New DataGridViewCellStyle()
tmpCell.BackColor = Color.Beige
Try
If GetProperGridCellValue(dgGrid.Item("qty", e.RowIndex), 0) = 1 Then dgGrid.Rows(e.RowIndex).DefaultCellStyle = tmpCell
Catch