Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7026961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:11:09+00:00 2026-05-28T00:11:09+00:00

This should be easy, but I’m failing to do this. I have ASPxListBox with

  • 0

This should be easy, but I’m failing to do this. I have ASPxListBox with checkbox option turned on. So I’d like to have selected items in one string. Like this:

item1,item4,item9

and so on.

Notice that they should be divided by “,” and last comma deleted.

Tried something like this, but won’t work:

StringBuilder sb = new StringBuilder();
for (int i = 0; i < lb1.Items.Count; i++)
    sb.Append(lb1.Items[i].Selected ? lb1.Items[i].Text + "," : "");
TextBox1.Text = sb.ToString();

(I asked similar question before, but as I havent mention that this is ASPxListBox, suggestions I got wont works.

So, this is Visual Studio 2008, Devexpress 9.3 and .NET framework 3.5

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T00:11:10+00:00Added an answer on May 28, 2026 at 12:11 am

    @keyboardP: your solution is rather ok on my mind, so +1.

    Moreover, you can find a similar solution in the DevExpress code central:

    http://www.devexpress.com/Support/Center/e/E2625.aspx

    ASPxListBox listBox = instance;
    
    string selectedItemsAsString = string.Empty;
    
    foreach (ListEditItem item in listBox.SelectedItems)
        selectedItemsAsString += item.Value + ";";
    
    if (selectedItemsAsString.Length > 0)
        selectedItemsAsString = selectedItemsAsString.Trim(new char[] { ';' });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This seemed like it should be easy, but I have had trouble getting it
I feel like this one should be easy but after numerous searches and attempts
This seems like this should be easy but I have not been able to
OK, I'm feeling like this should be easy but am obviously missing something fundamental
This seems like it should be really easy but I couln't find an answer
This seems like it should be easy, but I can't quite find an explanation
This should be easy but I have just started toying with matplotlib and python.
This seems like it should be easy but i've spent way too much time
Ok this should be easy but I can NOT figure it out. I have
This should be easy but for some reason it's escaping me. I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.