C++: press key
presses a key on the keyboard
for(int a=0;a<120;a++)
{
keybd_event(13,0,0,0);//down
keybd_event(13,0,KEYEVENTF_KEYUP,0);//up
Sleep(1000);
}
Keep, track and share your code snippets with your friends
presses a key on the keyboard
for(int a=0;a<120;a++)
{
keybd_event(13,0,0,0);//down
keybd_event(13,0,KEYEVENTF_KEYUP,0);//up
Sleep(1000);
}
0 Comments