Sticky keys
-
After stroking SHIFT key five times, one dialog pops up to notify if to enable the sticky keys. Do you know some way to disalbe this function and let it not shown when stroking the SHIFT key? Thanks in advance!
-
After stroking SHIFT key five times, one dialog pops up to notify if to enable the sticky keys. Do you know some way to disalbe this function and let it not shown when stroking the SHIFT key? Thanks in advance!
Go to Control Panel->Accessiblity Options->KeyBoard tab Uncheck -> (Use StickyKeys) Click the corresponding Settings button of the settings section. UnCheck -> (Use ShortCut) That's it. :)
--Owner Drawn --Nothing special --Defeat is temporary but surrender is permanent --Never say quits --Jesus is Lord
-
Go to Control Panel->Accessiblity Options->KeyBoard tab Uncheck -> (Use StickyKeys) Click the corresponding Settings button of the settings section. UnCheck -> (Use ShortCut) That's it. :)
--Owner Drawn --Nothing special --Defeat is temporary but surrender is permanent --Never say quits --Jesus is Lord
I have known that way, however, implementing it by progamming is my favorate.:) Have you other ways, by means of coding or offer an API function? Such as in WinCE(Only my program need run in windows XP): =============================== STICKYKEYS skf; BOOL bSuccess; // Fill in the members of the STICKYKEYS structure. skf.cbSize = sizeof(STICKYKEYS); skf.dwFlags = (SKF_AVAILABLE | SKF_STICKYKEYSON | SKF_AUDIBLEFEEDBACK); // Call SystemParametersInfo with the SPI_SETSTICKYKEYS flag. bSuccess = SystemParametersInfo(SPI_SETSTICKYKEYS, sizeof(STICKYKEYS), (LPVOID) &skf, 0); -- modified at 6:34 Monday 21st November, 2005
-
I have known that way, however, implementing it by progamming is my favorate.:) Have you other ways, by means of coding or offer an API function? Such as in WinCE(Only my program need run in windows XP): =============================== STICKYKEYS skf; BOOL bSuccess; // Fill in the members of the STICKYKEYS structure. skf.cbSize = sizeof(STICKYKEYS); skf.dwFlags = (SKF_AVAILABLE | SKF_STICKYKEYSON | SKF_AUDIBLEFEEDBACK); // Call SystemParametersInfo with the SPI_SETSTICKYKEYS flag. bSuccess = SystemParametersInfo(SPI_SETSTICKYKEYS, sizeof(STICKYKEYS), (LPVOID) &skf, 0); -- modified at 6:34 Monday 21st November, 2005
Hey I thought you wanted to do it the other way round.:laugh:
--Owner Drawn --Nothing special --Defeat is temporary but surrender is permanent --Never say quits --Jesus is Lord
-
Hey I thought you wanted to do it the other way round.:laugh:
--Owner Drawn --Nothing special --Defeat is temporary but surrender is permanent --Never say quits --Jesus is Lord
I guess, to modify the code could bring into effect... Plus, to check/uncheck the option may be implemented by an API function, for it seems like a block.. Stroking five times can activate the dialog, is there some service on guard? So if to configure something can make the dialog inactive all along? -- modified at 10:15 Monday 21st November, 2005