cannot have multiple parent tables?

rjhe22

Well-known member
Joined
May 22, 2008
Messages
88
Programming Experience
Beginner
o right sound. i used this code to fill a datagridview for one xml document i had on my local machine which worked
Dim filePath As String = "authors.xml"

AuthorsDataSet.ReadXml(filePath)

DataGridView1.DataSource = AuthorsDataSet
DataGridView1.DataMember = "authors"

but when i changed the first line to this
Dim filePath As String = "http://www.ecb.europa.eu/stats/eurofxref/eurofxref-hist-90d.xml"

i got this error
Nested table 'Cube' which inherits its namespace cannot have multiple parent tables in different namespaces.


do u no what that means
 
Last edited by a moderator:
Back
Top