My problem is oulined here:

http://support.microsoft.com/kb/314043

Microsoft says: "This behavior is by design."

No workaround is provided. I need a workaround.

So I have a dataset which is populated correctly with the contents of the table name Sales.StoreContact.

When I try DataGridView1.DataMember="Sales.SalesContact" the IDE throws:

Argument Exception was unhandled.
Child list for field Sales cannot be created.

I really need a hand here as Ive tried many things, and nothing worked. I dont want to rename my tables either.

Thanks in advance,

Eric

-------the dataset contains-----

<NewDataSet>

 <Sales.SalesContact>
   <SalesContactID>1</SalesContactID>  
   <Name>Jimmy&lt;/Name>  
   <ReasonType>Damaged&lt;/ReasonType>  
   <ModifiedDate>2010-01-05T00:00:00+00:00&lt;/ModifiedDate>  
 </Sales.SalesContact>  

</NewDataSet>

link|improve this question
I used .DataSource = dsTableContents.Tables.Item(0) as I had to use this op in a dynamic context. – user323186 Sep 15 '10 at 14:39
Many thanks to Dan – user323186 Sep 15 '10 at 14:40
feedback

1 Answer

up vote 0 down vote accepted

Update: If your DataTable itself is called "Sales.SalesContact", you could try setting the DataGridView.DataSource property directly to the DataTable (instead of the DataSet):

Dim salesContactTable As DataTable = dataSet.Tables("Sales.SalesContact")
dataGridView.DataSource = salesContactTable

So you're saying you have a DataSet called "Sales", which contains a table called "SalesContact"?

Did you try setting your DataGridView.DataSource property to your "Sales" DataSet and DataGridView.DataMember to simply "SalesContact"?

link|improve this answer
Yes. Tried that. – user323186 Sep 15 '10 at 12:52
<NewDataSet> <Sales.SalesContact> <SalesContactID>1</SalesContactID> <Name>Jimmy</Name> <ReasonType>Damaged</ReasonType> <ModifiedDate>2010-01-05T00:00:00+00:00</ModifiedDate> </Sales.SalesContact> </NewDataSet> – user323186 Sep 15 '10 at 12:53
@user323186: I see. So your table itself is called "Sales.SalesContact"? – Dan Tao Sep 15 '10 at 13:00
yes. exactly. any ideas? – user323186 Sep 15 '10 at 13:11
@user323186: Did you try my updated suggestion? – Dan Tao Sep 15 '10 at 13:16
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.