nee@cf_su20.Salomon.Com (Robert Nee) (01/24/91)
I have been trying for some time to write a routine that will read an icon (.ICO) file and use CreateIcon to make an icon on the fly. This routine is supposed to return a handle to an icon. I have the SDK docs and read all about the file format of the .ICO file. My routine seems to read the file fine. And inspection with CV seems to indicate that I am reading the file correctly. The problem I feel is with my call to CreateIcon. The call returns a handle to an icon but the icon looks scrambled when displayed. Has anyone been able to use the CreateIcon call with success? Has anyone been able to successfully read .ico files and know of some pitfalls I should be aware of? I would appreciate any help very much. Thank You. Robert F. Nee <nee&cf_su20.sbi.com>
fishkin@pixar.uucp (Ken Fishkin) (01/26/91)
In article <155@cf_su20.cf_su10.Sbi.COM> nee@cf_su20.Salomon.Com (Robert Nee) writes: >Has anyone been able to use the CreateIcon call with >success? Has anyone been able to successfully read >.ico files and know of some pitfalls I should be aware >of? I spent a week or two of heartache on exactly this problem, and finally found that: It turns out that the call to DisplayIcon will cause your program to exit with an "unrecoverable application error" bomb unless the height and width of the icon, as specified in the call to CreateIcon, are _exactly_ that expected by your display (in our case, both must be 32). You can have a different number of bits/pixel, but the height and width can not differ. This limitation, needless to say, is undocumented.