Hi Randy,
It seems that you need to get the Customer information from the parent
table when you have an order in the child table. In this case, I suggest
you try to add some expression columns to the child table(Orders) which map
to the parent table columns. Then you will see all the values in the child
table.
First you will need to create DataRelation between the two tables in the
DataSet schema. Then in the DataColumn.Expression property, you can specify
as "Parent.(RelationName).CustomerName", to make the column display the
Customer's name.
Please check the following link for more information about the Expression
property.
http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfsystemdatadatacolumnclassexpressiontopic.asp
Kevin Yu
Microsoft Online Community Support
============================================================================
==========================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
============================================================================
==========================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)