checkedlistbox and string

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • havejeet
    New Member
    • May 2009
    • 1

    checkedlistbox and string

    I have a comma separated string and I want to load all values into checkedlistbox control of my windows application in C#............. how do I do that....

    any help appreciated!

    Jeet
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    1. Read up on the string type in the MSDN Library so you can be familiar with all its methods.
    2. Notice that one of those methods is the .Split() method
    3. Use that .Split() method to break up your string on all the commas

    Comment

    Working...