So you don't get the Vista style? If this is the case, it's no wonder you ran into trouble.
Without a manifest, an old version 5.x of comctl32.dll is loaded for your app. This version expects a struct size of 80.
If you specify a manifest for your app (or let the compiler create one automatically), version 6.10 of comctl32.dll is loaded. This version expects a struct size of 100.
Without a manifest, an old version 5.x of comctl32.dll is loaded for your app. This version expects a struct size of 80.
If you specify a manifest for your app (or let the compiler create one automatically), version 6.10 of comctl32.dll is loaded. This version expects a struct size of 100.

本文探讨了应用程序在Vista系统中遇到样式问题的原因。没有清单文件时,会加载旧版本的comctl32.dll,该版本期望80字节大小的结构。若指定清单文件,则加载新版comctl32.dll,其期望100字节大小的结构。

1597

被折叠的 条评论
为什么被折叠?



