If I have some text in a String, how can I copy that to the clipboard so that the user can paste it into another window (e.g. from my application to Notepad)?
|
I wish calling SetText were that easy but there are quite a few gotchas that you have to deal with. You have to make sure that the thread you are calling it on is running in the STA. It can sometimes fail with an access denied error then work seconds later without problem - something to do with the COM timing issues in the clipboard. And if your application is accessed over Remote Desktop access to the clipboard is sketchy. We use a centralized method to handle all theses scenarios instead of calling SetText directly. @Stecy: Here's our centralized code: The StaHelper class simply executes some arbitrary code on a thread in the Single Thread Apartment (STA) - required by the clipboard.
Then we have a specific class for setting text on the clipboard. Creating a
Usage looks like this:
|
|||||||
|
|
System.Windows.Forms.Clipboard.SetText (Winforms) or System.Windows.Clipboard.SetText (WPF) |
|||||||||
|
|
WPF: Winforms: Both have a static SetText method. |
||||
|
|
|
In Windows Form, if your string is in a textbox, you can easily use this:
|
||||
|
|
|
This works for me: You want to do: System.Windows.Forms.Clipboard.SetText("String to be copied to Clipboard"); But it causes an error saying it must be in a single thread of ApartmentState.STA. So lets make it run in such a thread, the code for it:
After calling copy_to_clipboard(), the string is copied into Clipboard so you can Paste or Ctrl-V and get back the string as "String to be copied to Clipboard". |
|||
|
|
|
Clipboard.SetText is what you want |
|||
|
|
|
Using the solution showed in this thread:
Results in the exception:
To prevent this, you can add the attribute
|
|||
|
|
