Delphi .NET (2) Database (71) Delphi IDE (89) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
|
Turning images on/off in Internet Explorer
This article has not been rated yet. After reading, feel free to leave comments and rate it.
You can disable downloading images in IE using the registry. The setting will effect future IE instances or as soon as the user opens the OPTIONS dialog.
Many other interesting flags can be found under
\Software\Microsoft\Internet Explorer\
Call the function below as
SetIE_DisplayInlineImages(false);
 | |  | | procedure SetIE_DisplayInlineImages(bDisplay : boolean);
const
DisplayInlineImages = 'Display Inline Images';
var
sTmp : string;
begin
with TRegistry.Create do
begin
RootKey := HKEY_CURRENT_USER;
OpenKey ('\Software\Microsoft\Internet Explorer\Main', True);
if bDisplay then
sTmp := 'yes'
else
sTmp := 'no';
WriteString (DisplayInlineImages, sTmp);
Free;
end ;
end; | |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|