by Matteo.m » Mar 5, 2006 @ 7:08am
WM_TIMER:
// Check the keys if they are pressed.
if (KeysPressed$[keys.vkUp$])
PostMessage(hWnd$, WM_CLOSE, 0, 0);
end;
if (KeysPressed$[keys.vkDown$])
end;
if (KeysPressed$[keys.vkLeft$])
end;
if (KeysPressed$[keys.vkRight$])
end;
if (KeysPressed$[keys.vkA$])
PostMessage(hWnd$, WM_CLOSE, 0, 0);
end;
so basicly to me is not working the vkA$, adding the exit on the up$ i'm able to get out. This behavior i have it only on pocketpc side
Last edited by
Matteo.m on Mar 6, 2006 @ 9:35am, edited 1 time in total.