Hello everybody,
is it possible to convert a MemberList into a String by using a for loop, copying each line of the ValueTextList and inserting it with an additional ";" in a string variable or a textbox with Design Studio 1.1 SP2? (If not, will it be possible in the 1.2 beta?)
I would expect something like this to do the job:
String ListItems
if (ListBox1.Items.Count > 0)
{
for (int i = 0; i < ListBox1.Items.Count; i++)
{
ListItems = ListBox1.Items[i].getText + ";";
}
}
However, that does not work...
Any ideas?
Tanks a lot and best wishes
Andreas