hi,
i want copy a selected text from notepad to my aplication using the sendkeys and clipboard of windows i using this code:


SendKeys "{end}", True
SendKeys "+{home}", True
Clipboard.Clear
SendKeys "{DOWN}", True

so far so good this can select the text that i want now i want send this selected text to the clipboard i using this:

'SendKeys "^{c}", True
but this don´t work and i can´t understand why


so my question is how can i press "CTR + C" by using the sendkeys to copy a selected text? or there is other way using a api to do this?
thanks a lot for your help