Image list loading fails on Delphi 6 and Vista service pack 2 - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T08:39:48Zhttp://stackoverflow.com/feeds/question/1074857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1074857/image-list-loading-fails-on-delphi-6-and-vista-service-pack-21Image list loading fails on Delphi 6 and Vista service pack 2 Max2009-07-02T14:52:40Z2009-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#10752211Answer by gabr for Image list loading fails on Delphi 6 and Vista service pack 2 gabr2009-07-02T15:58:23Z2009-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#10752271Answer by JosephStyons for Image list loading fails on Delphi 6 and Vista service pack 2 JosephStyons2009-07-02T15:59:51Z2009-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#10753731Answer by Max for Image list loading fails on Delphi 6 and Vista service pack 2 Max2009-07-02T16:29:19Z2009-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 >= ComCtlVersionIE6 then
begin
ComCtrlHandle := GetModuleHandle(comctl32);
if ComCtrlHandle <> 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) <> 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#10754646Answer by Rob Kennedy for Image list loading fails on Delphi 6 and Vista service pack 2 Rob Kennedy2009-07-02T16:45:39Z2009-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#10781550Answer by Max for Image list loading fails on Delphi 6 and Vista service pack 2 Max2009-07-03T07:20:05Z2009-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>