I’m unable to copy/paste items from my listbox to any document (Excel, Word, .txt). I would need to select multiple items in the listbox. I searched for it but there seem to be multiple vague answers around there. Can anyone guide me?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
All you need to do is allow
SelectionModetoMultiSimpleorMultiExtendedthen you can use SelectedItems collection to copy to clipboard in KeyDown event of listboxSimply put
ListBox1.SelectionMode = SelectionMode.MultiSimpleinform.loadEventand use this code (note: listbox is named as
ListBox1)