Just as we can "Add Forms" in VB6, can we add files to a project in C++ ??. For example, I have created a file "abc1" in the proj "xyz" and I want to add "abc2" to the same proj. What should I do ??
Printable View
Just as we can "Add Forms" in VB6, can we add files to a project in C++ ??. For example, I have created a file "abc1" in the proj "xyz" and I want to add "abc2" to the same proj. What should I do ??
C++ has no projects.
Read the documentation of the IDE you're using.
In visual C++6, when we click File -> new, the window which opens shows, by default, the "projects" tab where we fill up project name and location. Thereafter we open the "files" tab and so on.Quote:
Originally Posted by CornedBee
C++ is a language. VC++6 is a horribly outdated IDE for that language. There's a difference. In C++, when asking questions that are not simply about the language itself, you must always say what IDE you're using.
Right-click on the sources folder in the project browser, choose Add->New from the context menu. Choose a C++ source file in the wizard.