Image list loading fails on Delphi 6 and Vista service pack 2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T08:39:48Z http://stackoverflow.com/feeds/question/1074857 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-2 1 Image list loading fails on Delphi 6 and Vista service pack 2 Max 2009-07-02T14:52:40Z 2009-07-03T07:20:05Z <p>Delphi 6 on Vista service pack 2 seems that can't load imagelist from dfm and save back again in the IDE. The project with the dfm corrupted can't be rebuilt.</p> <p>the error when I run the project is:</p> <p>EReadError Error reading imagelist1.Bitmap: Failed to read ImageList data from stream</p> <p>any suggestion?</p> <p>thanks in advance</p> http://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-2/1075221#1075221 1 Answer by gabr for Image list loading fails on Delphi 6 and Vista service pack 2 gabr 2009-07-02T15:58:23Z 2009-07-02T15:58:23Z <p>Upgrade your Delphi.</p> http://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-2/1075227#1075227 1 Answer by JosephStyons for Image list loading fails on Delphi 6 and Vista service pack 2 JosephStyons 2009-07-02T15:59:51Z 2009-07-02T15:59:51Z <p>Try running Delphi as an administrator. Do you still get the error?</p> http://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-2/1075373#1075373 1 Answer by Max for Image list loading fails on Delphi 6 and Vista service pack 2 Max 2009-07-02T16:29:19Z 2009-07-02T16:35:51Z <p>The problem may be on ImageList_Write of the comctl32.dll</p> <pre><code>// delphi 6 procedure TCustomImageList.WriteData(Stream: TStream); var SA: TStreamAdapter; begin SA := TStreamAdapter.Create(Stream); try if not ImageList_Write(Handle, SA) then raise EWriteError.CreateRes(@SImageWriteFail); finally SA.Free; end; end; // delphi 2005 procedure TCustomImageList.WriteData(Stream: TStream); var SA: TStreamAdapter; ComCtrlHandle: THandle; const ILP_DOWNLEVEL = 1; begin if CachedComCtrlVer = 0 then begin CachedComCtrlVer := GetFileVersion(comctl32); if CachedComCtrlVer &gt;= ComCtlVersionIE6 then begin ComCtrlHandle := GetModuleHandle(comctl32); if ComCtrlHandle &lt;&gt; 0 then ImageListWriteExProc := GetProcAddress(ComCtrlHandle, 'ImageList_WriteEx'); { Do not localize } end; end; SA := TStreamAdapter.Create(Stream); try { See if we should use the new API for writing image lists in the old format. } if Assigned(ImageListWriteExProc) then begin if ImageListWriteExProc(Handle, ILP_DOWNLEVEL, SA) &lt;&gt; S_OK then raise EWriteError.CreateRes(@SImageWriteFail) end else if not ImageList_Write(Handle, SA) then raise EWriteError.CreateRes(@SImageWriteFail); finally SA.Free; end; end; </code></pre> http://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-2/1075464#1075464 6 Answer by Rob Kennedy for Image list loading fails on Delphi 6 and Vista service pack 2 Rob Kennedy 2009-07-02T16:45:39Z 2009-07-02T16:45:39Z <p>Have you done anything funny to your Delphi installation, such as adding a <em>delphi32.exe.manifest</em> file to Delphi's directory in an attempt to make the IDE have XP or Vista theming? Don't do that. If you have that file there, delete it, and you should be back to normal.</p> <p>The image-list format changed with version 6 of the Common Controls library, and Delphi 6 is not capable of using it. The manifest tells the IDE to use version 6, so when it saves your DFM, it uses that format. Then, when loading, prior versions can't read it anymore.</p> http://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-2/1078155#1078155 0 Answer by Max for Image list loading fails on Delphi 6 and Vista service pack 2 Max 2009-07-03T07:20:05Z 2009-07-03T07:20:05Z <p>The problem is the delphi32.exe.manifest file!</p> <p>Thanks to all and specially to Rob Kennedy</p> <p>Max</p>