Applying XP to addin controls

T

tasleem

hi i want to apply XP styles to my addin for outlook and windows XP, i have
applied this method it works fine on Exe, i mean desktop application but not
on addin dll,any body have any idea how to do that in dll or addin, here is
link of that,
http://www.codeproject.com/w2k/xptheme.asp

any body have used any other technique to apply that on add ins.
 
F

Frank Sharp

For an Outlook AddIn the manifest file should be in the folder where u find
Outlook.exe.
The name of the manifest file is Outlook.exe.manifest.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*" />
</dependentAssembly>
</dependency>
</assembly>

Cheers, Frank
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top