![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
Join Date: Feb 2006
Posts: 40
Rep Power: 0
![]() |
C# listbox
I want to select all or one by one of the list elements from a list box and COPY them. If anybody helps,I would be glad...
|
|
|
|
|
|
#2 |
|
Programmer
Join Date: Feb 2006
Posts: 40
Rep Power: 0
![]() |
Im programming in miscorost visual C# and language is C#
|
|
|
|
|
|
#3 |
|
Hobbyist Programmer
Join Date: Sep 2005
Location: A House...
Posts: 191
Rep Power: 4
![]() |
Copy them where? Do what after you copy them? You need to give more info.
|
|
|
|
|
|
#4 |
|
Programmer
Join Date: Feb 2006
Posts: 40
Rep Power: 0
![]() |
I just want to copy it with my mouse or ctrl+c and then paste it to a text file outside manually.
|
|
|
|
|
|
#5 |
|
Hobbyist Programmer
|
handle the selected index changed event and add the item text to the clipboard.
Clipboard.SetDataObject(listbox1.SelectedItem.Text, true); This is just an idea off the top of my head. This might be a nuisance for the web side |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|