missing registry value

  • Thread starter Thread starter lynnGasch
  • Start date Start date
L

lynnGasch

This article
http://support.microsoft.com/kb/813827
describes how to set a longer timeout for IE. In the app we are
developing, we want to see if the user has created the value
mentioned in that article. I created the key/value on my machine,
but when I try to get the value using the RegistryKey class, the
value is missing. Using regedit, I see about 15 values under
Software\Microsoft\Windows\CurrentVersion\Internet Settings
but using key.GetValueNames, I get only 6. Any idea what's
going on?

thanks!
Lynn
 
object value =
Registry.CurrentUser.GetValue(@"Software\Microsoft\Windows\CurrentVersion\InternetSettings",
"KeepAliveTimeout", null);

/claes
 
Back
Top