views:

35

answers:

1

How can we detect in Windows OS is running in accessibility mode? What we basically need to check if a user has turned on any accessibility feature when launching an application. Thoughts?

+2  A: 

Ask the user for what features they want enabled. You shouldn't make assumptions in your app about what they need, since you'll probably be wrong (maybe they're using the magnifier because they are looking at Where's Waldo puzzles).

There's no "Accessibility Mode" in Windows just like there's no "Accessibility Mode" in the real world. Offer the individual features that might be needed to improve accessibility, and let the user decide what's best for them.

Kai
Thanks. We already plan to support most of the accessibility features with a simple user preference screen. What I was looking for was if there was a setting @ the OS level which a user can set to indicate to all applications. If not now, I wish this particular preference soon makes it to the OS settings. It would be easier for people to configure at one place rather than configuring each individual application.
Sandy