WS_TABSTOP Issue
Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance
I have a small app on windows in which I create a window and a bunch of
buttons.
The same app is also ported to CE.
We now needed to get it "keyabord enabled". At that time, I realized
that the "WS_TABSTOP" specified for the buttons do not work. After some
research, I got that to work by using
while(GetMessage(&msg, NULL, 0, 0))
{
if(!IsDialogMessage(hwnd, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
// this was the old code
/*TranslateMessage(&msg);
DispatchMessage(&msg);*/
}
Now I tried doing the same change to the CE app but in there the TAB
key still does not work.
What do I need to do more to tab my way through these buttons on CE?
Any help will be greatly appreciated.
Thanks for your time.
.
Relevant Pages
- Re: break points disabled in library project
... I then launched the windows ... app and started the debugger. ... Tath is, a new tab was created for the other file, focus ... windows executable as the 'Command' on the debugging tab of the project ... (microsoft.public.vstudio.general) - Re: Windows.. its like coming home!
... gradual transition, especially in going from OS 9 to OS X. ... They needed something that could compete with Windows, ... mean by the "2 of every app" comment before - Apple took whatever apps ... I've found that because the Dock shows applications rather than windows, ... (comp.sys.mac.advocacy) - Re: Windows.. its like coming home!
... gradual transition, especially in going from OS 9 to OS X. ... They needed something that could compete with Windows, ... mean by the "2 of every app" comment before - Apple took whatever apps ... I've found that because the Dock shows applications rather than windows, ... (comp.sys.mac.advocacy) - RE: Beginners Questions
... We do use Windows form on the presentation layer which is on ... terminal server and call web services on the business logic side. ... of using "proxy" authentication on SQL Server. ... > I have written an app with a Windows Forms UI that is deployed to clients ... (microsoft.public.dotnet.distributed_apps) - Re: Frustration level with Windows -- ARG!
... I can have an app sieze and you can go take a ten ... That is MS-Outlook, not Windows. ... to the processes tab, not the applications tab. ... and it tries to stop them "gently" if it can, before resorting to kill -9. ... (comp.sys.mac.advocacy) |
|