vote up 4 vote down star
1

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)?

flag

6 Answers

vote up 5 vote down check

You can use System.Windows.Forms.Clipboard.SetText(...)

link|flag
vote up 1 vote down

if your string is in a textbox, you can use easily this:

        textBoxcsharp.SelectAll();
        textBoxcsharp.Copy();
        textBoxcsharp.DeselectAll();
link|flag
vote up 1 vote down

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.

link|flag
+1, I've experienced at least some of these gotchas. It's worked OK for me if I wrap the clipboard access in try { ...} catch (System.Runtime.InteropServices.ExternalException) { }. – Joe May 22 at 19:35
vote up 1 vote down

Clipboard.SetText is what you want

http://msdn.microsoft.com/en-us/library/ydby206k.aspx

link|flag
vote up 2 vote down

System.Windows.Forms.Clipboard.SetText (Winforms) or System.Windows.Clipboard.SetText (WPF)

link|flag
What if it is a Console app? – Cheeso May 22 at 19:11
2  
You can still use either, you'd just add the winforms dll as a reference assembly. – Jeff Moser May 22 at 19:50
vote up 1 vote down

WPF: System.Windows.Clipboard (PresentationCore.dll)

Winforms: System.Windows.Forms.Clipboard

Both have a static SetText method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.