I am developing an application using visual studio 08 and mysql. In my form I have a datagridview control together with some databinded textboxes that reflect the information from the datagrid. So far all good. This was just a drag n drop from the data sources. The datagrid is binded to table 1 and so are the textboxes. In the same form I dragged some binded textboxes from table 2. The two tables are connected by the 'CustomerID' field. The textboxes from table 2 do not show the correct information according to the ID stored in table 1. How can do to show the correct values without using runtime queries and datareaders, etc. I want to avoid the runtime option because it presents new more compliated problems with my binding of the controls. I hope I was well understood. Thanks for the replies.