I want get values from keyboard when i press "ctrl + c" or right click and select "copy" in my Application(Using VB.net 2003). Thanks
Please help me.!!!!!! :)
Printable View
I want get values from keyboard when i press "ctrl + c" or right click and select "copy" in my Application(Using VB.net 2003). Thanks
Please help me.!!!!!! :)
What do you mean by :values from keyboard"? Could you explain a bit more?
It's Mean:
I have Application, now I want my Application get value from keyboard when I press "Ctrl + C" or Right click select "copy".
Example: I have Folder with name "Documents and Settings", i select this folder and then press F2 and then I press Ctrl + C or Right click select Copy, I want My Application get value: Documents and Settings.
Please Help Me!
Regards,
You can use this :
VB Code:
MsgBox Clipboard.GetText
to get the text in the clipboard. To see when the value is changed, you can either keep comparing at a small interval the content of the clipboard object, or use apis that will be a bit harder...