heh that xmlhttp refresh bug hit me too.... [Smile]

code:
if readvalue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings","SyncMode5") <> 3
dim $yesno
$yesno = messagebox('This program uses parts of IE5 to gather it's' + @crlf +
'information. For increased performance it is' + @crlf +
'recommended that the settings for' + @crlf +
'"Temporary Internet files", be set to "Every' + @crlf +
'Visit to a page".' + @crlf + @crlf +
' Would you like me to make this change now?',"Attention!",48+4)
if $yesno = 6
$nul = writevalue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings","SyncMode5","3","reg_dword")
if @error = 0
$nul = messagebox("Change to IE was successful","Attention!",48)
else
$nul = messagebox("Unable to make change to IE","Attention!",48)
endif
else
$nul = messagebox("Change was not made","Attention",48)
endif
endif

Bryce