Using keybd_event, I am trying to write "Ctrl V" (paste from clipboard). This are the instructions that I am doing: keybd_event &H11, 0, 0, 0 > this activate CTRL Key keybd_event 86, 0, KEYEVENTF_KEYUP, 0 > this press the V Key keybd_event &H11, 0, KEYEVENTF_KEYUP, 0 > this is suppose to disable CTRL Key... The problem is , that after adding the ASCII code for "Ctrl" (&H11), the "Ctrl" funtion is ENABLE (toggle). How I can disable the "Ctrl" function for the rest of my program? I try a lot API functions without having good results, even when I unload the program the CTRL key is still enable... Any idea!!! Antonio S.:confused: My OS system is Windows XP