Lanc1988 Posted March 28, 2005 Posted March 28, 2005 I have a textbox and im trying to have the text in it copied to the clipboard, i tried textbox.Copy() but it doesn't seem to do anything. Thanks. Quote
*Experts* mutant Posted March 28, 2005 *Experts* Posted March 28, 2005 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformsclipboardclasstopic.asp System.Windows.Forms.Clipboard class will help you with that. Example of putting text into clipboard: Clipboard.SetDataObject(txtbox.Text) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.