A voir également:
- Protection sous Excel vs macros VISUAL BASIC
- Visual basic - Télécharger - Langages
- Liste déroulante excel - Guide
- Microsoft 365 basic - Accueil - Microsoft Office
- Microsoft visual c++ runtime - Guide
- Si et excel - Guide
2 réponses
Utilisateur anonyme
1 juin 2007 à 21:12
1 juin 2007 à 21:12
Bonjour,
vous pouvez désactiver la touche pendant l'exécution de la macro.
pour ce faire, en début de macro, ajouter :
'Désactiver la touche <ESC>
Application.EnableCancelKey = False
pour réactiver en fin de macro :
'Réactiver la touche <ESC>
Application.EnableCancelKey = True
Lupin
vous pouvez désactiver la touche pendant l'exécution de la macro.
pour ce faire, en début de macro, ajouter :
'Désactiver la touche <ESC>
Application.EnableCancelKey = False
pour réactiver en fin de macro :
'Réactiver la touche <ESC>
Application.EnableCancelKey = True
Lupin
4 juin 2007 à 10:25
Elise