Locking Taskbar on WM6.1 and WM6.5 but also affects windows key??
-
3. května 2012 18:50
Hi,
I have devices that run with windows mobile 6.1 and 6.5 and both devices have windows key, a physical key. So I want to control the clicking operation in the taskbar area. For WM6.1, the Start/Windows icon is sharing with the taskbar on the top screen but WM6.5, the Start/Windows is at bottom of screen not sharing with the taskbar which is on the top screen. So whenever I lock the taskbar, the physical windows key also takes same effect, but I really don't want that. I want the windows key remains as is. The code below I got from google search.
CWnd* pWnd = CWnd::FindWindowW(TEXT("HHTaskBar"), NULL); if(pWnd) { pWnd->ShowWindow(SW_HIDE); pWnd->EnableWindow(FALSE); }
- Upravený silentHill 3. května 2012 18:51 updating details
Všechny reakce
-
4. května 2012 8:27
Hello silentHill,
Can you tell the manufacturer of the devices you work with ? Maybe this manufacturer has a SDK that can control the keyboard the way you want.
http://frederic.saccoccio.free.fr
- Upravený Frederic Saccoccio 4. května 2012 8:27
-
4. května 2012 16:23thanks for your respond. I wonder if anyone out there who has device with WM6.1 or 6.5 and try this simple code above to confirm whether this is a device manufacture defect or MS API.. very appreciate that..
-
6. května 2012 17:55