我遇到了以下问题:
我的 Delphi7 程序在大多数运行 WinXP/Vista/7 的计算机上运行顺畅,但在一些较旧的 Windows XP 安装上(只有少数)我遇到以下问题:
我有一个系统映像列表,我正在将自己的图标添加到系统映像列表的副本中。添加我的图标后,我得到一个“无效的图像大小”。EInvalidOperation 错误。
这是有问题的代码:
function GetSystemLargeIconsList: TCustomImageList;
// This gets the system image list.
var
SysIL: HImageList;
SFI: TSHFileInfo;
MyImages: TCustomImageList;
begin
SysIL := SHGetFileInfo('', 0, SFI, SizeOf(SFI),
SHGFI_SYSICONINDEX or SHGFI_LARGEICON);
if SysIL <> 0 then begin
MyImages:=TCustomImageList.Create(nil);
// Assign the system list to the component
MyImages.Handle := SysIL;
// The following prevents the image list handle from being
// destroyed when the component is.
MyImages.ShareImages := TRUE;
Result:=MyImages;
end;
end;
var
DocumentImgList: TCustomImageList;
IconToAdd: TIcon;
begin
DocumentImgList:=GetSystemLargeIconsList;
Documents.LargeImages:=DocumentImgList;
Documents.SmallImages:=DocumentImgList;
IconToAdd:=TIcon.Create;
DocumentListIcons.GetIcon(0, IconToAdd);
DocumentImgList.AddIcon(IconToAdd); ----> this is the line of the exception
更糟糕的是,我使用的是 TPngImageList 组件,但根据代码,它似乎只是调用了标准的 Delphi 函数:
if TObject(Self) is TPngImageList
then if Image = nil
...
else begin
Patch := FindMethodPatch('AddIcon');
if Patch <> nil
then begin
Patch.BeginInvokeOldMethod;
try
Result := TCustomImageList(Self).AddIcon(Image); ----> this is where the exception happens
finally
Patch.FinishInvokeOldMethod;
end;
end
else Result := -1;
end;
我最近发现,在其中一台出现此问题的计算机上,uxtheme.dll 或 explorer.exe 已被一些 Windows 皮肤程序修补。
所以我想有人或某个程序正在以一种使我的 Delphi 程序崩溃的方式入侵系统映像列表。
有想法该怎么解决这个吗?
谢谢!