Show data from 2 sources

I have a datagrid view which currently displays all the customers details (Name, address etc). One of the columns has data relating to the customers previous orders. Currently this data is displayed in the format 1,2,3,4,.... and not Order 1, Order 2....... so i need to connect that column with data from another source but also keeping the current customer details. Overall its one column to pull data from another source - is this possible if so please advise (Im using Visual Studio .Net 2005 edition)

thanks



Answer this question

Show data from 2 sources

  • Matt2006

    Here is an example that connects to the northwind database and shows the orderdetails table in a datagridview. It changed the productid column to combobox column so it shows the product name instead of it id. Hope this helps.


  • Show data from 2 sources