Hi
I want to make direct copy/paste so for example I just make one click to button direct will make the paste to clipboard for this you can write example code
If you want to copy from a textbox (in this example textBox1), this is what you need:
Clipboard.SetText(textBox1.Text); //To copy your text to your clipboard
Clipboard.GetText(); //To get your text from your clipboard
Use
Clipboard.SetText("your Text")
to Put Text to Clipboard
and
String myText = Clipboard.GetText()
to recieve Text from Your Keyboard.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With