The F1 and F12 keys 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 F5 and the project did not run. What could be happening?
The F1 and F12 keys 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 F5 and the project did not run. What could be happening?
Weird behavior, but you can try resetting your Visual Studio to the initial settings. But before doing this try doing those basic tests, restart Visual Studio and / or restart your Windows.
Visual Studio provides some command-line parameters that can be used to perform a reset on various types of IDE configurations, below is a list with a small explanation about each:
To run them, just open Run with Win + R and enter the IDE opening command along with the argument (can be done in other ways, but is just an example), as devenv.exe [/parâmetro]
.
/ResetUserData
- Resets all user settings; /ResetSettings
- Restores the IDE to the default settings and optionally allows you a specific settings file through one more argument; /ResetSkipPkgs
- Removes 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 performing these procedures, if it does not work perhaps the only solution is to reinstall your Visual Studio