Hi all,
I'm trying to bind a label to a field contained in a related table.
As I've seen in many places, it easy to do a binding with the following code
textBox1.Bindings.Add("Text", ds, "ParentTable.Relation.ChildField");
but what if I'd like to do something like this:
textBox1.Bindings.Add("Text", ds, "ChildTable.Relation.ParentField");
I couldn't get it to work
Thanks in advance

Databinding to a related table
wjc