A bug?

  • Thread starter Thread starter yxq
  • Start date Start date
Y

yxq

My OS is WindowsXP + SP2 + VS2003

When i write the value into Registry, it is not successful.

'it is not successful.
Registry.CurrentUser.OpenSubKey("Software\Microsoft\Internet
Explorer\Main", True).SetValue("FormSuggest Passwords", "no")

But if change "FormSuggest Passwords" to "FormSuggestPasswords" (remove the
blank), it is OK.

'it is OK
Registry.CurrentUser.OpenSubKey("Software\Microsoft\Internet
Explorer\Main", True).SetValue("FormSuggestPasswords", "no")

Why?
 
It's unlikely a bug.

I'm on 2000 and that registry key is named: FormSuggest PW Ask on my system.

I would suggest a different route to access that setting as apparently you
won't be able to rely on it being named something cosistent version to
version of windows.

What that alternate route is exactly I couldn't say.
 
Why?

Steve Schroeder said:
It's unlikely a bug.

I'm on 2000 and that registry key is named: FormSuggest PW Ask on my
system.

I would suggest a different route to access that setting as apparently you
won't be able to rely on it being named something cosistent version to
version of windows.

What that alternate route is exactly I couldn't say.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top