i have a windows application form which has a button up and button down.
a groupbox is provided wherein it indicates that it is the first value of the dataset with its corresponding detailed datas.
the functionality of the button up is to move that certain data in the 2nd groupbox to groupbox 1...
and the button down is to move a certain data in the groupbox 1 to groupbox 2.
how is this possible? thanks
Krishnaraj LPosted Jun 29, 2006, 8:02 AM
What you can try is when you click on down button, get the selected item text of the first list and add it to the next list, then delete the selected item from first list. The same logic can be used when you click on up button as well.
Let me know if you need the code for this.