I've noticed that Microsoft embeds a manifest into:
Outlook Express
The manifest imbedded there appears as:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<assemblyIdentity type="win32"
name="Microsoft.Windows.InternetExplorer.OutlookExpress"
version="1.0.0.0" processorArchitecture="x86"/>
<description>Outlook Express</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
language="*"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
/>
</dependentAssembly>
</dependency>
</assembly>
I have two questions:
What exactly is the public key token, how is it obtained and used?
And how would this be implemented inside a VB application?
--
Jim Carlock
http://www.microcosmotalk.com/
Post replies to the newsgroup.