Dear all,
I have a requirement to read combo box multiselected values and save them to a text box and the values are separated by a comma (,). Please advise how shall I achieve this? Thank you for your help and support.
My Approach -
I tried to store the combo box selected values into a collection object like below -
Collect(Prodcollection, Comb0BxProducts.SelectedItems);
On select combo box event, I want to read all all the combo box selected values from the collection and set to a new variable with values separated by comma (,). This variable I will assign to a text box default property.
My question is how to read the values from collection and separate them with comma(,) and set to a a new variable?