I have been developing in Visual Studio 2005 for ages, finally bit the bullet and moved to Visual Studio 2019. In VS2005 I have a macro that loads .h file for current .cpp file when I press Ctrl+H. I understand that macros are not supported in 2019 internally and that there are plugins that enable them, but they lack macro editor. Is there any way to achieve the same functionality I had in VS2019?
Is there a way to load .h file for current .cpp file in Visual Studio 2019?
339 Views Asked by PiotrK At
1
There are 1 best solutions below
Related Questions in C++
- How to immediately apply DISPLAYCONFIG_SCALING display scaling mode with SetDisplayConfig and DISPLAYCONFIG_PATH_TARGET_INFO
- Why can't I use templates members in its specialization?
- How to fix "Access violation executing location" when using GLFW and GLAD
- Dynamic array of structures in C++/ cannot fill a dynamic array of doubles in structure from dynamic array of structures
- How do I apply the interface concept with the base-class in design?
- File refuses to compile std::erase() even if using -std=g++23
- How can I do a successful map when the number of elements to be mapped is not consistent in Thrust C++
- Can std::bit_cast be applied to an empty object?
- Unexpected inter-thread happens-before relationships from relaxed memory ordering
- How i can move element of dynamic vector in argument of function push_back for dynamic vector
- Brick Breaker Ball Bounce
- Thread-safe lock-free min where both operands can change c++
- Watchdog Timer Reset on ESP32 using Webservers
- How to solve compiler error: no matching function for call to 'dmhFS::dmhFS()' in my case?
- Conda CMAKE CXX Compiler error while compiling Pytorch
Related Questions in MACROS
- drop down list to decide which range my graph will plot
- Catia V5 Dynamic Hidden Line Removal With Macro Please Help Me
- Convert macro to a function but cannot concatenate inputs using std::stringstream
- Common Lisp: How to use a macro within a macro?
- How to remove the "*" in c++ macro args?
- Caused by : java. awt. HeadlessException
- When I click "enable macros" on my PowerPoint presentation, I get an error saying controls can't be activated. They're not registered on this computer
- SAS Macro Variables
- Generate unique type parameter in procedural derive macro
- unexpected interaction between macroexpand-1 and macrolet
- Can C macros be expanded in flex?
- External macro definition in header
- How to undefine and redefine a macro in C++?
- How to check if a macro argument is an integer literal in C
- How come clang and gcc don't produce a cast warning for this openssl macro, but do otherwise?
Related Questions in VISUAL-STUDIO-2019
- "Visual Studio stopped responding for 12 seconds,uninstalling extension might help" getting this message on installing VSIX and on opening the project
- VS2019 won't build .asm file even with masm.props build customization enabled?
- how to automatically generate a Module from a project in Visual Studio
- Visual Studio Conversion Properties: "set to a value for the first time, but it was already consumed" problem
- How to remove shortcut/alias to a .cpp and .h file from another project in Visual Studio 2019?
- Add connected service only adding reference.cs VS 2019 ASP.net
- Stop Moq NuGet package searching for source
- Visual Studio 2019 Python re-installation
- Viewport namespace missing from SharpDX directive, please assist
- Unable to cross-compile a simple program using MSVC 9
- SSIS Duplicate Enumerators in ForEach Loop
- HTTP Error 401.0 - Unauthorized You do not have permission to view this directory or page when running ASP.NET MVC 5 app from VS 2019 & IIS Express
- run/load VS2022 solution / projects with VS2019 gives error about MSBuild versions
- Receiving error when I try to run my ASP.NET MVC web application after I updated to Bootstrap 5.3.3
- Intellisense lists many unnecessary <Extention> methods for objects of type String?
Related Questions in VISUAL-STUDIO-2005
- How to stop elements of the Visual Studio (2019) toolbar snapping to the left
- Legacy .NET CF download - Post-deploy error 0x00000001
- Timeout when starting a Service in Windows
- Are *.pdb files bound to a specific compilation?
- My application is not working on AMD CPUs
- Vs 2005 device connection
- how to read .txt file into string windows 6 classic / windows CE, using vs2005?
- Setting proxy in c++ app on visual studio 2005
- Is there a way to load .h file for current .cpp file in Visual Studio 2019?
- "cannot open file 'user32.lib'" when trying to use Visual Studio 2005 on Windows 10
- Can TFS 2012 express be used with Visual Studio 2005?
- Running C++ CLR Visual Studio 2005 application as administrator
- Task failed because "LC.exe" was not found, or the .NET Framework SDK v2.0 is not installed
- Visual C++ 2005 Redistributable
- C++ compilation issue error - C2332: <class: missing tag name>
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
No macro nor plugin is needed. Just rightclick the editing pane within Visual Studio 2019 (while editing your
.cppsource file), and selectToggle Header/Code Filefrom the popup menu