Results 1 to 1 of 1

Thread: Manifest asInvoker = Funny Looking Listbox

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2007
    Posts
    100

    Manifest asInvoker = Funny Looking Listbox

    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:

    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>
    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.

    How do I prevent this?

    -THX
    Last edited by zlander; Jan 8th, 2008 at 02:09 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width