Hi all,
I have an array of values that I want to select in a multi selection listbox.
I've tried this, but it only ever shows one of the selecte d values...
(c#)
foreach (string itemstoselect in arrayofitems)
{
lbJobType.SelectedValue = itemstoselect;
}
Can anyone help, I have been surfing the web but cannot find the answer.
ta
C
I have an array of values that I want to select in a multi selection listbox.
I've tried this, but it only ever shows one of the selecte d values...
(c#)
foreach (string itemstoselect in arrayofitems)
{
lbJobType.SelectedValue = itemstoselect;
}
Can anyone help, I have been surfing the web but cannot find the answer.
ta
C