my code seems to be not working
gridView6.Columns["QueueID"].OptionsColumn.AllowEdit = true;
I also tried
int n = Convert.ToInt32(gridView6.Columns.Count.ToString());
for (int i = 0; i < n; i++)
{
gridView6.Columns["QueueID"].OptionsColumn.AllowEdit = true;
}
I have tried these codes but my gridview still does not allow editing after executing my winform, Is there other way to make this work? because my code does not catch any errors