DataGrid Header
.NET (Core and Framework)
3
Posts
2
Posters
0
Views
1
Watching
-
How to get the datagrid header value? I have VS 2003 and not able to use Datagridview so is there any other work around?
-
How to get the datagrid header value? I have VS 2003 and not able to use Datagridview so is there any other work around?
-
Singh, Thank you for your interest on this post but I got it all figured out. First I connect to the database then query the table and set it as DataTable. From the datatable I managed to looped for inconsistent Header and display them onto Comboboxes as Lists adapter.Fill(dt) Dim dc As DataColumn For Each dc In dt.Columns() .... end