我很困惑,因为我创建了一个应该在加载时检测注册表项的函数。
非常简单:
Dim regVersion As Microsoft.Win32.RegistryKey
Microsoft.Win32.Registry.LocalMachine.OpenSubKey("SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\xx", True)
If regVersion Is Nothing Then
MsgBox("lol")
Else
MsgBox("xD")
End If
但即使Subkeyfolder" xx"在CurrentVersion中存在,它只显示" lol"。怎么可能?我只是迟钝而错过了什么?的xD