I want to do a CTL "C" command in my VB.Net app. I want to highlight text from any where, word, IE, Notepad, Applications, where ever I may be, then run a .Net app that does the copy and puts it in the clipboard. The app then uses what is in the clipboard as a parameter to another app and opens that app and does a search on that parameter.
My app works just using the clipboard class when I do a manual CTRL "C" but I am not sure how to handle the SendKeys class to get it to work. It should do a copy and which then places in the clipboard so I can retrieve.
Sendkeys.send("^(C)") is supposed to do a copy but I think I need more.
Any ideas or is there another way to do what I need to do.
Thank You
My app works just using the clipboard class when I do a manual CTRL "C" but I am not sure how to handle the SendKeys class to get it to work. It should do a copy and which then places in the clipboard so I can retrieve.
Sendkeys.send("^(C)") is supposed to do a copy but I think I need more.
Any ideas or is there another way to do what I need to do.
Thank You