📜  excel vba 读取注册表项值 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.639000             🧑  作者: Mango

代码示例1
'VBA function to READ from the Windows Registry:

Public Function RegRead(Key$) As String
    On Error Resume Next
    With CreateObject("wscript.shell")
        RegRead = .RegRead(Key)
    End With
    If Err Then Err.Clear
    On Error GoTo 0
End Function

'NB: Always backup the Windows Registry before accessing it!