Some keys are not working on my VS2015

Asked

Viewed 1,313 times

2

The keys F1 à F12, are not working. I use a DELL notebook, with windows 10. I put the cursor on top of a class, I gave F12 to go to the function and nothing. I gave a F5 and the project did not run. What may be happening?

  • 2

    Is the FN key on the keyboard pressed? Check, because if so, this could be the problem.

  • If you are going to use function keys often it is possible to change the default behavior of the notebook at startup so that you do not need to press either the <kbd>Fn</kbd> key in these cases, but need the <kbd>Fn</kbd> key when using itlas para controlar volume, brightness, on or off wifi, etc.

1 answer

3

Weird behavior, but you can try resetting your Visual Studio to the initial settings. But before doing so try those basic tests, restart Visual Studio and/or restart your Windows.

Visual Studio offers some command line parameters that can be used to perform a reset on various types of IDE settings, below is a list with a short explanation of each one:

To run them just open Run with Win + R and type the IDE’s open command along with the argument (can be done in other ways, but it’s just an example), as follows devenv.exe [/parâmetro].

  • /ResetUserData - Reset all user settings;
  • /ResetSettings - Restores the IDE to its default settings and optionally allows you a specific settings file through one more argument;
  • /ResetSkipPkgs - Remove all Skiploading tags added to Visual Studio packages.
  • /ResetAddin - Removes commands associated with a specific add-in.

You can check the original description of these parameters using devenv.exe /?.

Try these procedures, if it doesn’t work maybe the only solution is to reinstall your Visual Studio

Browser other questions tagged

You are not signed in. Login or sign up in order to post.