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
1 Attachment(s)
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>
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.