Asus 636N not work vkStart

If in Simple application add:
HRESULT CMyApplication::KeyDown(DWORD dwKey, GDKEYLIST& keylist)
{
// Minimize window
if (dwKey == keylist.vkStart)
{
Minimize();
}
If I compile for POCKETPC 2003 and Release version. It is not work
Value keylist.vkStart is 193. dwKey is 13.
Why 193???? Only at this is PocketPC!!!
HRESULT CMyApplication::KeyDown(DWORD dwKey, GDKEYLIST& keylist)
{
// Minimize window
if (dwKey == keylist.vkStart)
{
Minimize();
}
If I compile for POCKETPC 2003 and Release version. It is not work

Value keylist.vkStart is 193. dwKey is 13.
Why 193???? Only at this is PocketPC!!!