We are working on a simple helper tool for testing accessibility in IE pages. One of the few tests that is pretty hard to automate since it has to be reviewed first, although once reviewed screen shot comparisons of regressions could be useful assuming the pages are reasonably static. Either way this tool is a simple set of options for IE. Turn on/off IE settings for Images, Colors, and CSS; resize IE window for resolution testing (ok not the same thing but reasonably the same effect), Alt text expand, and font size. The tool sets the IE registry settings then opens IE on the test url. After you are done it resets all the registry setting. Nice, simple, and easy to hand to a dev for unit tests. The only feature we wanted to add the was somewhat difficult was setting Windows into High Contrast Mode. After long searching for how to change high contrast mode in .NET I came up with the following. Public Structure tagHIGHCONTRAST Dim cbSize As Integer Dim dwFlags As Integer Dim lpszDefaultScheme As IntegerEnd StructurePublic Const HCF_HIGHCONTRASTON As Integer = &H1Public Const SPI_GETHIGHCONTRAST As Integer = 66Public Const SPI_SETHIGHCONTRAST As Integer = 67Public Const SPIF_UPDATEINIFILE As Integer = &H1Public Const SPIF_SENDWININICHANGE As Integer = &H2Public Const SPIF_SENDCHANGE As Integer = SPIF_SENDWININICHANGEDeclare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" ( _ ByVal uAction As Integer, _ ByVal uParam As Integer, _ ByRef lpvParam As tagHIGHCONTRAST, _ ByVal fuWinIni As Integer) As Integer