.

Recommended Answers

All 3 Replies

Sure it's possible as I don't understand your question!!

Sure it's possible as I don't understand your question!!

My question was is it possible to generate sentence in the listbox in this format: How are you today?
Instead of : How
are
you
today
?

string str;
foreach(object o in yourListBox.Items)
{
str+= o.ToString() + " ";
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.