Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to print checklistbox items into textbox
Posted
Comments
nane aa 21-Feb-13 5:17am    
Give me clearly.

1 solution

Try this
VB
For t As Integer = 0 To CheckedListBox1.CheckedItems.Count - 1
    TextBox1.Text += CheckedListBox1.CheckedItems(t).ToString() + vbCrLf
Next

The text box will need Multiline = True
 
Share this answer
 
Comments
rani.smile 22-Feb-13 0:18am    
How we can use one Timer in multiple forms in vb.net
CHill60 22-Feb-13 4:11am    
I think you may have posted this comment in error. If you actually wanted to ask your own question you need to use the red "Ask a question" button at the top of the page

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900