//Send Up arrow key
keybd_event(38, 72, 0, 0);
keybd_event(38, 72, 2, 0);

//Send Down arrow key
keybd_event(40, 80, 0, 0);
keybd_event(40, 80, 2, 0);

Hope this helps someone. And hope I am...