“Excel VBA Escribir en el registro de Windows” Código de respuesta

Excel VBA Escribir en el registro de Windows

'VBA function to WRITE to the Windows Registry:

Public Sub RegSave(Key$, valType$, Val$)
    With CreateObject("wscript.shell")
        .RegWrite Key, Val, valType
    End With
End Sub

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

Excel VBA Read Valor clave de registro

'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!
Excel Hero

Respuestas similares a “Excel VBA Escribir en el registro de Windows”

Preguntas similares a “Excel VBA Escribir en el registro de Windows”

Más respuestas relacionadas con “Excel VBA Escribir en el registro de Windows” en VBA

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código