Is there a way to notify IE of registry changes through code?

I made changes to registry (proxy) settings through windows programming code.

I need to restart (reopen) Internet Explorer every time I run the code for these changes to take effect.

Is there an API in Windows programming through which I can notify Internet Explorer or Windows that registry changes have been made, without having to reopen Internet Explorer for these changes to take effect?

Thanks.

0


a source to share


3 answers


Try the following:



Changing Internet Explorer 7 Proxy Settings without Restarting Internet Explorer http://www.codeproject.com/KB/IP/Change_IE7_Proxy_Setting.aspx

0


a source


Yes, with Shell apis (FAQ).
See Under Win32 api newsgroup: //nntp.aioe.org/comp.os.ms-windows.programmer.win32



0


a source


I managed to do this successfully with the API InternetSetOption

.

0


a source







All Articles