Hi, i have two ComboBoxes getting DataProvider from an XMl doc. The XML nodes
look like this:
<activity label="aerobics">
<level label="low impact" data="21.4"/>
<level label="medium impact" data="28.5"/>
</activity>
<activity label="arguing">
<level label="verbal" data="8.8"/>
<level label="animated" data="12.2"/>
</activity>

The Activity ComboBox displays the activity labels (parent node in this case)
The Level ComboBox displays the level labels (child node in this case)

So, both are bound to the appropriate node in the schema of the XML connector.
The binding for the Level CB looks like this:
activities.activity.[n].level

Then, in the bindings tab of the XML connector, the "index for activity" is
set to the SelectedIndex of the Activity ComboBox.

Now, here's the thing: IT WORKS, BUT NOT UNTIL THERE IS A MANUAL CHANGE OF THE
ACTIVITY CB BY THE USER. When it first loads, the Activity CB displays the
data, but the Level CB displays NULL. When I select something from Activity CB,
it all starts to work just fine.

What am i doing wrong?
Is it just me, or is binding more trouble than it's worth?

Thanks so much!
B