G
Guest
I have the following code:
sendToAgent.DataSource = someDataSet.Tables[0];
someListBox.DisplayMember = "AGENTNAME";
someListBox.ValueMember = "AGENTID";
someListBox.Tag = "USERNAME";
What I want to do is iterate through the selected values and retrieve the
displaymember, valuemember and Tag.
I saw another post about extracting a DataRowView and using it but it
wouldn't work for me.
I don't understand why this is so arcane.
Any help would be MUCH MUCH appreciated!
sendToAgent.DataSource = someDataSet.Tables[0];
someListBox.DisplayMember = "AGENTNAME";
someListBox.ValueMember = "AGENTID";
someListBox.Tag = "USERNAME";
What I want to do is iterate through the selected values and retrieve the
displaymember, valuemember and Tag.
I saw another post about extracting a DataRowView and using it but it
wouldn't work for me.
I don't understand why this is so arcane.
Any help would be MUCH MUCH appreciated!