in my PreTranslateMessage function i have the following code to detect if ALT & TAB key r down

if(pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_TAB && pMsg->wParam == VK_MENU)
{
...............
.........
return -1;
}

but this does,nt work for alt key
what's wrong ???

in msdn there's VK_ALT but this gives undeclared indetifier