Multiple DataTables in DataGrid?
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hello I've got a problem with VB.NET/Windows Application. I have a DataSet, and I want to connect columns from different DataTables to one view in the DataGrid. Is this possible? /e
-
Hello I've got a problem with VB.NET/Windows Application. I have a DataSet, and I want to connect columns from different DataTables to one view in the DataGrid. Is this possible? /e
Greetings As far as I know that is not possible. One way around is to create a temporary datatable with desired columns and copy the data there. This, however, does consume some amount of memory. It should not be an issue if the data is not very big. Nothing else comes to my mind right now.