我想枚舉Registrykeys。 我至今: Dim key As Microsoft.Win32.RegistryKey = My.Computer.Registry.LocalMachine.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\")
For Each subkey In key.GetSubKeyNames
我已經想出瞭如何獲取註冊表鍵值,我現在正在查找的是如何獲取特定路徑的註冊表值? Private Sub ListRegistryKeys(ByVal RegistryHive As String, ByVal RegistryPath As String)
Dim key As Microsoft.Win32.RegistryKey
Select Case RegistryHi