Answers for "excel vba read registry key value"

VBA
3

excel vba read registry key value

'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!
Posted by: Guest on April-30-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language