question

$$ANON_USER$$ avatar image
0 Votes"
$$ANON_USER$$ asked BarrySchwarz-8780 commented

How to open multiples files and debugg all those files at the same time in VS2019

How to open multiples files in VS2019 in different 2 tab and debug it?

c++vs-debugging
· 3
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

What do you mean by "multiple files"? Multiple source files in the same project, multiple projects, or something else?
What type of files?

0 Votes 0 ·

Multiple source files in the same project..

0 Votes 0 ·

You can open each file in the editor by double clicking the file name in the project explorer window. Each will open in a new tab.

You can put a break point at the first executable statement in each function.

You then start execution in debug mode by pressing F5. As each function is entered, the system will stop and display the file at the current break point.

1 Vote 1 ·

0 Answers