My application requires uiAccess=true in manifest file and becomes digitally signed during post build event.
<requestedPrivilegesxmlns="urn:schemas-microsoft-com:asm.v3"><requestedExecutionLevellevel="asInvoker"uiAccess="true"/></requestedPrivileges>
When I try to run my application from the debugger with VS2008 or VS2010 I get the following error:
Error while trying to run project: Unable to start program [Application].
The application manifest has the uiAccess attribute set to 'true'.
Running an Accessibility application requires following the steps
described in Help.
[OK] [Help]
But the help button is redirecting me to a "Page not found"-Website.
Is it even possible to debug an application with uiAccess=true ?
Martin