V
Vinesh
Hi All,
I need to move items between List Boxes.
Currently I have two listboxes on the form. The left listbox displays
the data from the database.
I am able to retrieve the selected value using
XDocument.DOM.selectSingleNode("//my:List1").text;
Now I want to push this value in the second list box by clicking on one
button & remove any selected value from second list box by clicking on
second button.
I was trying something like this to add selected item in second list
box:
XDocument.DOM.selectSingleNode("//my:List2").text) = XDocument.DOM.
selectSingleNode("//my:List1").text);
But this does not work.
Please help me to resolve this problem
Thanks & Regards,
Vinesh
I need to move items between List Boxes.
Currently I have two listboxes on the form. The left listbox displays
the data from the database.
I am able to retrieve the selected value using
XDocument.DOM.selectSingleNode("//my:List1").text;
Now I want to push this value in the second list box by clicking on one
button & remove any selected value from second list box by clicking on
second button.
I was trying something like this to add selected item in second list
box:
XDocument.DOM.selectSingleNode("//my:List2").text) = XDocument.DOM.
selectSingleNode("//my:List1").text);
But this does not work.
Please help me to resolve this problem
Thanks & Regards,
Vinesh