Hello.
Im getting value from textbox on button click like this:
Clipboard.SetDataObject(richTextBox1.Text);
What i want to do is to simulate ctrl+v action with single mouse click. (usually we place cursor on page and press ctrl+v)
What should be done finally:
1. user clicks button in windows form.
2. Program copy value from textbox.
3. Cursor's icon is replaced with new.
4. User goes to document(word,excel,txt etc) and click in the place he wants to paste.
5. program paste values
6. Cursor become normal mode back.
7. everybody is happy.
If you can help with some part of this or just provide some useful links, that would be great. Thank you.