Press_ALT_F4 Posted October 22, 2013 Share Posted October 22, 2013 hi, i want CTRL + V (paste) send to a field. i want paste the clipboard. i try for example this: KeyDown(CHR(17)); typetext('v'); Wait(50); KeyUp(CHR(17)); or this: KeyDown(CHR(17)); KeyDown('v'); Wait(50); KeyUp('v'); KeyUp(CHR(17)); but it dont work it writes only a "V" in the field hope for help bye Quote Link to comment Share on other sites More sharing options...
Press_ALT_F4 Posted October 29, 2013 Author Share Posted October 29, 2013 hi, after many trys is this the code who works for me. VKeyDown(VK_CONTROL); PressVKey(CharToVKey('v')); VKeyUp(VK_CONTROL); Quote Link to comment Share on other sites More sharing options...
slacky Posted October 29, 2013 Share Posted October 29, 2013 Good to see that you solved it without any help! :-) The solution you came up with seems to be the best way to do it. Quote Link to comment Share on other sites More sharing options...
Wanted Posted October 30, 2013 Share Posted October 30, 2013 Good to see that you solved it without any help! :-) The solution you came up with seems to be the best way to do it. qft Quote Link to comment Share on other sites More sharing options...