Hi.
I have a DataGridView that I add the columns to at runtime.
The datasource has a boolean type column and I want to be able to change the button text according to the boolean value.
For example:
If the boolean value is true then the button text should be "Unallocate" but if the boolean value is false, the button text should be "Allocate"
Does anybody know how I can change the value when the datagridviewcheckboxcolumn value changes from true to false and visa-versa?
Thanks for any help you can offer
I have a DataGridView that I add the columns to at runtime.
The datasource has a boolean type column and I want to be able to change the button text according to the boolean value.
For example:
If the boolean value is true then the button text should be "Unallocate" but if the boolean value is false, the button text should be "Allocate"
Code:
Dim btnColumn As New DataGridViewButtonColumn
btnColumn.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter
btnColumn.UseColumnTextForButtonValue = True
btnColumn.HeaderText = "Allocate"
btnColumn.Width = 75
btnColumn.Name = "Allocate"
btnColumn.DataPropertyName = "Allocate"
btnColumn.Visible = True
btnColumn.ReadOnly = False
.Columns.Add(btnColumn)
Does anybody know how I can change the value when the datagridviewcheckboxcolumn value changes from true to false and visa-versa?
Thanks for any help you can offer