I'm using the following "asInvoker" manifest in a VB6 program to avoid folder virtualization when users run the program from a Standard User account:
Even though the manifest does not include any reference to Microsoft.Windows.Common-Controls, it's causing any control based on the listbox class to display with UI theme elements.Code:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2"> <ms_asmv2:security> <ms_asmv2:requestedPrivileges> <ms_asmv2:requestedExecutionLevel level="asInvoker" uiAccess="false" /> </ms_asmv2:requestedPrivileges> </ms_asmv2:security> </ms_asmv2:trustInfo> </assembly>
How do I prevent this?
-THX


Reply With Quote