Programmer un bouton qui gère le clavier
Résolu/Fermé
Papyx
Papyx
- Messages postés
- 317
- Date d'inscription
- dimanche 16 septembre 2007
- Statut
- Membre
- Dernière intervention
- 17 septembre 2021
Papyx
- Messages postés
- 317
- Date d'inscription
- dimanche 16 septembre 2007
- Statut
- Membre
- Dernière intervention
- 17 septembre 2021
A voir également:
- Programmer un bouton qui gère le clavier
- Programmer un bouton qui gère le clavier ✓ - Forum - Windows XP
- A quoi sert le bouton rouge sur le clavier ✓ - Forum - Windows 10
- Ou est le bouton tilde sur le clavier dell ✓ - Forum - Windows
- Programmer un bouton de commande avec vba ✓ - Forum - VB / VBA
- Programmation de bouton de souris ✓ - Forum - Souris / Touchpad
1 réponse
Papyx
1 mai 2014 à 11:44
- Messages postés
- 317
- Date d'inscription
- dimanche 16 septembre 2007
- Statut
- Membre
- Dernière intervention
- 17 septembre 2021
1 mai 2014 à 11:44
J'ai trouvé une solution avec un script :
rep = "C:\Program Files\Microsoft Hardware\Keyboard"
If not CreateObject("Scripting.FileSystemObject").FolderExists(Rep) Then _
msgbox "répertoire non trouvé",,rep : wscript.quit
CreateObject("WScript.Shell").Run _
xx(rep & "\dplaunch.exe") & " Keyboard CPL KeySettings" , 1
function xx(v)
xx = chr(34) & v & chr(34)
end function