热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

VisualStudio2013调试键盘快捷方式无法正常工作-VisualStudio2013Debugkeyboardshortcutsarenotworking

IjustgotanewcomputerwithWindows8andinstalledVisualStudio2013onitandnowIhaveanis

I just got a new computer with Windows 8 and installed Visual Studio 2013 on it and now I have an issue with debugger shortcuts - I run application in a debug mode and it breaks at the first break point but when I try going further line by line, F10 does not work from the keyboard - only VS Debug menu. Anything I am missing?

我刚刚得到一台装有Windows 8的新计算机,并在其上安装了Visual Studio 2013,现在我遇到了调试器快捷方式的问题 - 我在调试模式下运行应用程序,它在第一个断点处中断,但是当我尝试进一步逐行时,F10不能从键盘 - 只有VS调试菜单。我错过了什么?

P.S. The issue was the function key. It needs to be turned on in order to use F keys

附:问题是功能键。需要打开才能使用F键

5 个解决方案

#1


3  

On Lenovo laptops, there is a shortcut to disable the Fn key automatically running the default Windows shortcuts.
Hit the Fn key and the Esc key at the same time to toggle the "Hot Key" default.

在Lenovo笔记本电脑上,有一个快捷方式可以禁用Fn键自动运行默认的Windows快捷方式。同时按Fn键和Esc键可切换“热键”默认值。

Hope this works for other Laptop brands since this is an easy shortcut for newer Lenovo laptops.

希望这适用于其他笔记本电脑品牌,因为这是新款联想笔记本电脑的简易快捷方式。

#2


1  

Please follow the instruction here, though it talks about visual studio 2010 it should help you to analyze the problem. it may be solved with the steps described there and if not, please let me know...

请按照这里的说明进行操作,虽然它谈到了Visual Studio 2010,它应该可以帮助您分析问题。它可以通过那里描述的步骤解决,如果没有,请告诉我...

Why does F10 (step over) in Visual Studio 2010 not work?

为什么Visual Studio 2010中的F10(跳过)不起作用?

Update Adding the answer from the source in case the link will be removed:

更新从源中添加答案,以防链接被删除:

In the Options.Keyboard page, please select "Debug.StepOver" from the command listbox, and then put focus to the "Press shortcut keys" textbox and press F10, click Assign button to re-assign shortcut, does it work?

在Options.Keyboard页面中,请从命令列表框中选择“Debug.StepOver”,然后将焦点置于“按快捷键”文本框并按F10,单击“分配”按钮重新分配快捷方式,是否有效?

You can also try to run Visual Studio under safe mode, which will prevents all third-party VSPackages from loading when Visual Studio starts; if the issue disappear under safe mode, you may consider checking your installed add-ons or VSPackages.

您还可以尝试在安全模式下运行Visual Studio,这将阻止在Visual Studio启动时加载所有第三方VSPackage;如果问题在安全模式下消失,您可以考虑检查已安装的附加组件或VSPackage。

Second, to log all activity of Visual Studio to a log file for further troubleshooting, please use the /Log switch, and post the log file content here, so we can do more investigation on it.

其次,要将Visual Studio的所有活动记录到日志文件中以进行进一步的故障排除,请使用/ Log开关,并在此处发布日志文件内容,以便我们对其进行更多调查。

If this feature works well before, and suddenly behave abnormally, it usually indicate that some files or configurations of Visual Studio installation is corrupted or missed, you can:

如果此功能之前运行良好,并且突然表现异常,则通常表示某些文件或Visual Studio安装配置已损坏或丢失,您可以:

Restores Visual Studio default settings by using "Devenv.exe /ResetSettings" command. Please backup your settings before restore to default settings.

使用“Devenv.exe / ResetSettings”命令恢复Visual Studio默认设置。请在恢复到默认设置之前备份您的设置。

Repair/reinstall Visual Studio;

修复/重新安装Visual Studio;

To repair Visual Studio In the Add or Remove Programs dialog box, select Visual Studio then click Change/Remove.

修复Visual Studio在“添加或删除程序”对话框中,选择“Visual Studio”,然后单击“更改/删除”。

#3


1  

I resolved my issue and wanted to post an answer in case anyone is looking for it. Enabling function key does not require any complicated solution, it can be enabled by changing settings in:

我解决了我的问题,想发布一个答案,以防有人在寻找它。启用功能键不需要任何复杂的解决方案,可以通过更改以下设置来启用它:

Control Panel -> Hardware and Sound (Category) -> Windows Mobility Center -> Adjust Commonly Used Mobility Settings

控制面板 - >硬件和声音(类别) - > Windows移动中心 - >调整常用的移动设置

Look Under Function Key Behavior and change the dropdown value to "Function Key" to enable Fn key.

查看功能键行为,并将下拉值更改为“功能键”以启用Fn键。

To disable it, select "Multimedia Key" 

要禁用它,请选择“多媒体键”

See: http://elena-sqldba.blogspot.com/2015/05/how-to-enable-function-key-on-windows.html

请参阅:http://elena-sqldba.blogspot.com/2015/05/how-to-enable-function-key-on-windows.html

#4


0  

I had the same problem. My solution was a bit different and can apply to any key. My F10 key was not working. After unplugging the keyboard and plugging it back in did not fix the problem, I twisted the keyboard like an ice cube tray and the F10 key started working again.

我有同样的问题。我的解决方案有点不同,可以应用于任何密钥。我的F10键没有用。拔下键盘并将其重新插入后没有解决问题,我把键盘像冰块托盘一样扭曲,F10键再次开始工作。

#5


0  

Also check 3rd party software. In my case I had Camtasia Recorder open and minimized, which apparently intercepts the F10 input (thanks, TechSmith)

还要检查第三方软件。在我的情况下,我将Camtasia Recorder打开并最小化,这显然拦截了F10输入(谢谢,TechSmith)


推荐阅读
  • 本文详细介绍了如何在PHP中使用Memcached进行数据缓存,包括服务器连接、数据操作、高级功能等。 ... [详细]
  • 在使用mybatis进行mapper.xml测试的时候发生必须为元素类型“mapper”声明属性“namespace”的错误项目目录结构UserMapper和UserMappe ... [详细]
  • Gradle 是 Android Studio 中默认的构建工具,了解其基本配置对于开发效率的提升至关重要。本文将详细介绍如何在 Gradle 中定义和使用共享变量,以确保项目的一致性和可维护性。 ... [详细]
  • C/C++ 应用程序的安装与卸载解决方案
    本文介绍了如何使用Inno Setup来创建C/C++应用程序的安装程序,包括自动检测并安装所需的运行库,确保应用能够顺利安装和卸载。 ... [详细]
  • 汇总了2023年7月7日最新的网络安全新闻和技术更新,包括最新的漏洞披露、工具发布及安全事件。 ... [详细]
  • 本文介绍了如何使用Java编程语言实现凯撒密码的加密与解密功能。凯撒密码是一种替换式密码,通过将字母表中的每个字母向前或向后移动固定数量的位置来实现加密。 ... [详细]
  • 本文介绍如何通过Java代码调用阿里云短信服务API来实现短信验证码的发送功能,包括必要的依赖添加和关键代码示例。 ... [详细]
  • 我在尝试将组合框转换为具有自动完成功能时遇到了一个问题,即页面上的列表框也被转换成了自动完成下拉框,而不是保持原有的多选列表框形式。 ... [详细]
  • 本文详细介绍了如何使用Linux下的mysqlshow命令来查询MySQL数据库的相关信息,包括数据库、表以及字段的详情。通过本文的学习,读者可以掌握mysqlshow命令的基本语法及其常用选项。 ... [详细]
  • HDU 2537 键盘输入处理
    题目描述了一个名叫Pirates的男孩想要开发一款键盘输入软件,遇到了大小写字母判断的问题。本文提供了该问题的解决方案及实现方法。 ... [详细]
  • 一.数据基本类型之set集合set和dict类似,也是一组key的集合,但不存储value。由于key不能重复,所以,在se ... [详细]
  • selenium通过JS语法操作页面元素
    做过web测试的小伙伴们都知道,web元素现在很多是JS写的,那么既然是JS写的,可以通过JS语言去操作页面,来帮助我们操作一些selenium不能覆盖的功能。问题来了我们能否通过 ... [详细]
  • 本文介绍了如何通过安装和配置php_uploadprogress扩展来实现文件上传时的进度条显示功能。通过一个简单的示例,详细解释了从安装扩展到编写具体代码的全过程。 ... [详细]
  • Excel技巧:单元格中显示公式而非结果的解决方法
    本文探讨了在Excel中如何通过简单的方法解决单元格显示公式而非计算结果的问题,包括使用快捷键和调整单元格格式两种方法。 ... [详细]
  • Canopy环境安装与使用指南
    《利用Python进行数据分析》一书推荐使用EPDFree版本的环境,然而随着技术的发展,目前更多人倾向于使用Canopy。本文将详细介绍Canopy的安装及使用方法。 ... [详细]
author-avatar
mobiledu2502885993
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有