I am trying to integrate this library into my application.
At first he crashed with
Unable to find an entry point named 'TaskDialogIndirect' in DLL 'ComCtl32'.
so i'm excavated
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
as recommended here .
Now the application will not compile with the following message:
Could not find file 'Microsoft.Windows.Common-Controls, Version=6.0.0.0, Culture=*,
PublicKeyToken=6595b64144ccf1df, ProcessorArchitecture=*, Type=win32'
Removing app.manifest will crash the application because I use Microsoft Ribbon.
How to fix this error?
source
share