“Excel VBA Écrivez dans le registre Windows” Réponses codées

Excel VBA Écrivez dans le registre 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 Lire la valeur clé du registre

'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

Réponses similaires à “Excel VBA Écrivez dans le registre Windows”

Questions similaires à “Excel VBA Écrivez dans le registre Windows”

Plus de réponses similaires à “Excel VBA Écrivez dans le registre Windows” dans VBA

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code