navigation in child table

  • Thread starter Thread starter reda246
  • Start date Start date
R

reda246

Hello,

I have a problem with navigation in child table. I am populating data
into Dataset, which has two tables (orders) and (item). A specific
order has particular items...All data is in XML format
---Order1
--. item 1
----item2
---Order2
---- item 2
----item 3
and so on.
I have tried with bindingManagerBase to solve, but I could'nt.
myBindingManager=Me.BindingContext(Data1.tables("Items")) ----> this
works, but I can't
navigate items for specific order.
myBindingManager +=1
Ideally, would be
myBindingManager=Me.BindingContext(Data1, "Order.Relation")
But this doesn't work, I am getting ArgumentException..

How can I solve this problem?
I appreciate for your help...

Thank you.
Reda
 
Back
Top