Registry Key Reading Problem (Default) value * Resolved *
Ok here is a good one.
This code will read any registry key \ value and return it as an object. However every registry key has a "(Default)" value in it that gets created when you make the key. The data I need to pull is in there. Anyone know the syntax?
I tried "Default" and "(Default)" neither work.
VB Code:
Dim MDACVer As RegistryKey = Registry.ClassesRoot.OpenSubKey("MDACVer.Version\CurVer\")
Dim strMDACVer As Object = MDACVer.GetValue("(Default)")
MessageBox.Show(strMDACVer)