News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Programming Internet Explorer

Started by cman, December 21, 2010, 10:10:41 PM

Previous topic - Next topic

cman

How does one write applications that effect changes in internet explorer's settings? Is there an API or something available to do this? Thanks for any information!

dedndave

ummmm - someone in here wrote an app a while back that altered the security settings
i can't recall who it was - maybe Rob (Gunner)
i believe they are values in the registry

Gunner

Yes, that was me  :bg
I had to do a lot of detective work with one of the sysinterls apps that watched file reads (registry).  Internet Explorer keeps everything in the Registry, so you can do it by "hand" since there are no API's to modify IE's settings. There is COM stuff that expose many things in IE though...
~Rob (Gunner)
- IE Zone Editor
- Gunners File Type Editor
http://www.gunnerinc.com

dedndave

Rob,
i don't remember the name of that proggie
do you have a link for that thread ?

Gunner

~Rob (Gunner)
- IE Zone Editor
- Gunners File Type Editor
http://www.gunnerinc.com

japheth

I'd say that modifying the IE registry values directly is a rather hackish way to change IE settings.  :boohoo:

IE has a pretty good documented COM Automation interface which is the "official" way to do such jobs.

There are some samples in Masm-assembly around which will demonstrate the idea quite well. Just search a bit!