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.