who is event
-
I use this code If DataGridView1.RowCount> 0 Then If DataGridView1.Rows(0).Cells("nadnica").Value <>Nothing Then CheckBox1.Enabled = True Else CheckBox1.Enabled = False End If End If and I want when type first letter in cell DataGridView1.Rows(0).Cells("nadnica") execute how make this thanks
-
I use this code If DataGridView1.RowCount> 0 Then If DataGridView1.Rows(0).Cells("nadnica").Value <>Nothing Then CheckBox1.Enabled = True Else CheckBox1.Enabled = False End If End If and I want when type first letter in cell DataGridView1.Rows(0).Cells("nadnica") execute how make this thanks
You should choose variable names that make your code readable. If you have a textbox in a cell, it will have a text changed event.
Christian Graus Driven to the arms of OSX by Vista.
-
You should choose variable names that make your code readable. If you have a textbox in a cell, it will have a text changed event.
Christian Graus Driven to the arms of OSX by Vista.
-
I use this code If DataGridView1.RowCount> 0 Then If DataGridView1.Rows(0).Cells("nadnica").Value <>Nothing Then CheckBox1.Enabled = True Else CheckBox1.Enabled = False End If End If and I want when type first letter in cell DataGridView1.Rows(0).Cells("nadnica") execute how make this thanks
-
Better u can use "Infragistics" "UltraWinGrid" control to solve this problem. There is a "CellChange" event, this event fire when u start typing the first letter itself.