|
Hi,
I have a datagridview with 61 columns When i pull all the column names into a datatable, all the column names are displayed ( in 61 rows) When i am using getfirstcolumn and get nextcolumn, i get 61 rows but some of the column names are not displayed. Do you have any idea why this is happening? Dim abc As DataGridViewColumn = dgvSchedules.Columns.GetFirstColumn(DataGridViewElementStates.None) abc = dgvSchedules.Columns.GetNextColumn(abc, DataGridViewElementStates.None, DataGridViewElementStates.None)
Thanks in Advance |