| View previous topic :: View next topic |
| Author |
Message |
Christopher Chuah Guest
|
Posted: Sun Jan 02, 2005 4:51 pm Post subject: how to call out the IE Properties page? |
|
|
Hi
is there a way to call out the IE property page using Delphi?
Is there a way to set one of the options "Empty Temporary Internet Files
folder when browser is closed" in the "Advanced" tab?
please help
thanks
chris
|
|
| Back to top |
|
 |
Avatar Zondertau Guest
|
Posted: Sun Jan 02, 2005 5:43 pm Post subject: Re: how to call out the IE Properties page? |
|
|
| Quote: | is there a way to call out the IE property page using Delphi?
|
It is a control panel applet stored in "%windir%system32INETCPL.CPL".
You should be able to activate this using the ShellExecute API.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc
/platform/shell/reference/functions/shellexecute.asp
| Quote: | Is there a way to set one of the options "Empty Temporary Internet
Files folder when browser is closed" in the "Advanced" tab?
|
These settings are stored in the registry. This one is in this key:
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet
SettingsCachePersistent
Note that this is the oppsite of the setting you mentioned. If this is
0 it is enabled, if it is 1 it is disabled.
You can use the TRegistry object to change this value.
|
|
| Back to top |
|
 |
|