excel VBA break execution when there's no break key on keyboard

前端 未结 12 1757
耶瑟儿~
耶瑟儿~ 2021-01-01 11:42

I\'m just noticing that on my laptop (Dell XPS 15z) there\'s no BREAK key (no dedicated number keypad). I\'m running the debugger step-by-step and then when all seems fine,

12条回答
  •  耶瑟儿~
    2021-01-01 12:13

    I have a Dell Precision without a Pause/Break key but there is a replacement for that: Fn + B, so:

    - Fn + B == Pause (pause execution);
    - Ctrl + Fn + B == Break (break execution);
    - Win + Fn + B == Windows + Pause (open System properties).

    You can execute the command:

    dir /s C:\
    

    and test the Pause and Break combination keys while dir lists all files in drive C.

    reference

提交回复
热议问题