标题:敬请各位高手解决,DataGridView控件
只看楼主
柠檬加冰加水
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2017-10-12
结帖率:0
已结贴  问题点数:20 回复次数:1 
敬请各位高手解决,DataGridView控件


textbox1.text里输入任意数字(比如5) 然后判断DataGridView1中关键词列(如图)

如果DataGridView1中的关键词字数大于5 则关键词所在的行标红

求各位高手解决
搜索更多相关主题的帖子: DataGridView 控件 判断 关键词 大于 
2017-10-12 14:28
xyxcc177
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:26
帖 子:197
专家分:1249
注 册:2017-7-8
得分:20 
程序代码:
Rem 如你的图,只有4列可以这么写。
Private Sub DataGridView1_CellEndEdit(sender As Object, e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellEndEdit
        Dim thisCol As Integer = 3

        Try
            If e.ColumnIndex = thisCol And DataGridView1.Rows(e.RowIndex).Cells(2).Value > 5 Then
                DataGridView1.Rows(e.RowIndex).DefaultCellStyle.BackColor = Color.Red
            Else
                DataGridView1.Rows(e.RowIndex).DefaultCellStyle.BackColor = Color.White
            End If
        Catch ex As Exception

        End Try
    End Sub


[此贴子已经被作者于2017-10-12 20:30编辑过]

2017-10-12 20:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-481315-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.056542 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved