Search results for query: *

  1. A

    Question Remove check box column from datagridview when clear datagridview

    i tried as follows dataGridView1.Columns.RemoveAt(12); i mentioned the index of checkbox and its worked. Thanks All exactly Mr jmcilhinney :-p , but i have to execute again and again with new inputs :-( this is the requirement :-) anyway i have solved this :-)
  2. A

    Question Remove check box column from datagridview when clear datagridview

    i have created datagridview dynamically with check box column,once i refresh my datagrid its removes all data except checkbox column,below code for adding checkbox column in datagrid DataGridViewCheckBoxColumn chk = new DataGridViewCheckBoxColumn(); dataGridView1.Columns.Add(chk)...
Back
Top Bottom