Hello,
I am trying to create(port) a Pocket PC Application that reads xml and then can list display the contents in a listbox for selection. Then write a back to xml the answer selected.
Code:
<root>
<q id ="1">
<qtxt>how much time do you spend on the Computer</qtxt>
<r1>1-3</r1>
<r2>4-6</r2>
<r3>6+</r3>
</q>
<q id="2">
<qtxt>Favorite Color</qtxt>
<r1>Red</r1>
<r2>Blue</r2>
<r3>Green</r3>
<r4>Yellow</r4>
<r5>Orange</r5>
<r6>Purple</r6>
<r7>Black</r7>
</q>
</root>
I was able to create it a program that ran on the computer but looking at the compact framework some methods are not :( supported in it.
Another problem I had encountered with the original program is that when I dynamically created the radio button or check boxes I had no idea how to retrieve the value that was selected.
any help is appreciated,
Kris