I got a DataGridViewTextBoxColumn. how can i fire a textchanged event on the same.
DataGridViewTextBoxColumn dgvColumnTextBox = new DataGridViewTextBoxColumn();
dgvColumnTextBox.Name = "Alias";
dataGridView.Columns.Add(dgvColumnTextBox);
I need to fire the event on changing the text of any of the cells in the column “Alias”. Please help.
Try the CellValueChanged event . http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.cellvaluechanged.aspx , or look for a CellChanged event in the control.