Results 1 to 3 of 3

Thread: Missiing Color Selector in Control Property Page

  1. #1

    Thread Starter
    Member chint's Avatar
    Join Date
    Feb 2009
    Location
    India
    Posts
    41

    Missiing Color Selector in Control Property Page

    Hi,

    is there anyway to fix the color sector in common control property page? mine is not displaying, I tried on win 7 and win xp. win xp is my main dev machine, I reinstalled sp6 but it doesnt fix the problem.

    here are the screenshots
    http://imageshack.us/photo/my-images/854/48945452.png/
    http://imageshack.us/photo/my-images/715/win7f.png/


    thanks,
    abhishek
    Last edited by chint; Jul 22nd, 2011 at 08:01 PM.

  2. #2
    Hyperactive Member
    Join Date
    Dec 2008
    Location
    Argentina
    Posts
    441

    Re: Missiing Color Selector in Control Property Page

    you have to put a manifest file in the resource VB6.EXE

    Code:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <assemblyIdentity
        name="JR.Inno.Setup"
        processorArchitecture="x86"
        version="1.0.0.0"
        type="win32"/>
    <description>Inno Setup</description>
    <dependency>
        <dependentAssembly>
            <assemblyIdentity
                type="win32"
                name="Microsoft.Windows.Common-Controls"
                version="6.0.0.0"
                processorArchitecture="x86"
                publicKeyToken="6595b64144ccf1df"
                language="*"
            />
        </dependentAssembly>
    </dependency>
    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
        <security>
            <requestedPrivileges>
                <requestedExecutionLevel level="asInvoker"            uiAccess="false"/>
            </requestedPrivileges>
        </security>
    </trustInfo>
    <application xmlns="urn:schemas-microsoft-com:asm.v3">
        <windowsSettings>
            <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
        </windowsSettings>
    </application>
    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
        <application>
            <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
            <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
        </application>
    </compatibility>
    </assembly>
    Attached Images Attached Images  
    leandroascierto.com Visual Basic 6 projects

  3. #3

    Thread Starter
    Member chint's Avatar
    Join Date
    Feb 2009
    Location
    India
    Posts
    41

    Re: Missiing Color Selector in Control Property Page

    i tested with or without manifest, same problem.

    thinking of reinstalling VB, i think some registry entry is wiped out by my registry cleaner.

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