How to copy text from RichTextBox or TextBox to clipboard? Thanks!
Copies the selected contents to the clipboard: Code: Textbox1.Copy
Textbox1.Copy
#define true ((rand() % 2)? true: false) // Debug THAT! Rate the posts that helped you! Evaluating Expressions | Simple POP3 Protocol Realization | Timers explained | Delegates explained | A secure login to your app sample | Numeric Textbox | Printer.Print (or I miss VB6 printing in .Net) | Shuffling any IEnumerable | Marshalling structures to byte arrays and back | Invoking a method by its name | Plugins architecture WITHOUT references | Permuter that permutes everything | Encrypt/Decrypt your stuff | Snake Game | Enumerating all Network Adapters in the system | How to make a web request
I solved problem: Code: TextBox1.SelectAll TextBox1.Copy TextBox1.DeselectAll
TextBox1.SelectAll TextBox1.Copy TextBox1.DeselectAll
Better mark it as Resolved then. Thank you..
The Difference between a Successful person and others is not a Lack of Knowledge, But rather a Lack of WILL
Alternatively: Code: My.Computer.Clipboard.SetText(TextBox1.SelectedText)
My.Computer.Clipboard.SetText(TextBox1.SelectedText)
Originally Posted by hepeci I solved problem: Code: TextBox1.SelectAll TextBox1.Copy TextBox1.DeselectAll With Cicatrix's help. I would hope you are going to give him reputation. Also, please mark the thread resolved.
CodeBank contributions: Process Manager, Temp File Cleaner Originally Posted by SJWhiteley "game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....
Forum Rules