I am using a DataGridView control in a VB.Net application where columns are being added dynamically to a DataTable which is being created in code. I need to order some of the columns alphabetically by name.
E.g.
Name, Surname, House Number, B, D, A, C
I need as...
Name, Surname, House Number, A, B, C, D
the columns are as they are needed so I cannot order them before.