Hi,
I have a a xamComboEditor bound to a datatable populated via sql. It is setup to be multiselect and visually is perfect. I need to pass the comma separate string to a function but cannot see how to get to it.
Is there something similar to .text or do i need to loop through the selecteditems?
regards,
Pfecher
after spending more time than expected we resorted to the below loop.
Dim finalValue As String = ""
For Each row As DataRowView In xamComboEditor2.SelectedItems
Dim currentValue As String = row.Item(0).ToString()
finalValue += currentValue +","
Next
finalValue = finalValue.Remove(finalValue.Length - 1)
Hello,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.