| 
O.P.  Key_Down Problem
 I would like to use Key_Down or a similar method to allow a user to popup a msn popup displaying an rss fee, this is what i have so far: 
 
if(KEY_DOWN(VK_F12) 
    { 
        DisplayToast("Key Press", "Test"; 
        strcpy(sResult, ""); 
        return TRUE; 
    } 
 
    return FALSE; 
} 
 
any ideas on how i can fix this? 
 |