Click here to Skip to main content
15,904,153 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Making a dialog box a child of a view Pin
bolivar12312-Jul-08 16:52
bolivar12312-Jul-08 16:52 
GeneralRe: Making a dialog box a child of a view Pin
Mike Hankey12-Jul-08 17:10
mveMike Hankey12-Jul-08 17:10 
GeneralRe: Making a dialog box a child of a view Pin
David Crow12-Jul-08 16:42
David Crow12-Jul-08 16:42 
QuestionHow to tokenize a string Pin
Nandu_77b12-Jul-08 10:37
Nandu_77b12-Jul-08 10:37 
AnswerRe: How to tokenize a string Pin
Saurabh.Garg12-Jul-08 19:41
Saurabh.Garg12-Jul-08 19:41 
AnswerRe: How to tokenize a string Pin
Ștefan-Mihai MOGA12-Jul-08 20:44
professionalȘtefan-Mihai MOGA12-Jul-08 20:44 
Questionhow to find a word in a string from the end? Pin
Nandu_77b12-Jul-08 8:57
Nandu_77b12-Jul-08 8:57 
AnswerRe: how to find a word in a string from the end? Pin
Luc Pattyn12-Jul-08 9:06
sitebuilderLuc Pattyn12-Jul-08 9:06 
QuestionRe: how to find a word in a string from the end? Pin
Nandu_77b12-Jul-08 9:16
Nandu_77b12-Jul-08 9:16 
AnswerRe: how to find a word in a string from the end? Pin
Luc Pattyn12-Jul-08 9:27
sitebuilderLuc Pattyn12-Jul-08 9:27 
QuestionRe: how to find a word in a string from the end? Pin
Nandu_77b12-Jul-08 10:30
Nandu_77b12-Jul-08 10:30 
AnswerRe: how to find a word in a string from the end? Pin
Bram van Kampen12-Jul-08 13:41
Bram van Kampen12-Jul-08 13:41 
QuestionConverting CString to const char* [modified] -Solved again Pin
Marc Clifton12-Jul-08 6:02
mvaMarc Clifton12-Jul-08 6:02 
AnswerRe: Converting CString to const char* [modified] -Solved again Pin
Mark Salsbery12-Jul-08 8:11
Mark Salsbery12-Jul-08 8:11 
AnswerRe: Converting CString to const char* [modified] -Solved again Pin
Nandu_77b12-Jul-08 9:05
Nandu_77b12-Jul-08 9:05 
GeneralRe: Converting CString to const char* [modified] -Solved again Pin
Marc Clifton12-Jul-08 9:11
mvaMarc Clifton12-Jul-08 9:11 
QuestionWTF: Linker can only find inline functions [modified] - Solved Pin
Marc Clifton12-Jul-08 5:34
mvaMarc Clifton12-Jul-08 5:34 
AnswerRe: WTF: Linker can only find inline functions [modified] - Solved Pin
bob1697212-Jul-08 7:11
bob1697212-Jul-08 7:11 
GeneralRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Marc Clifton12-Jul-08 9:10
mvaMarc Clifton12-Jul-08 9:10 
GeneralRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Bram van Kampen12-Jul-08 13:55
Bram van Kampen12-Jul-08 13:55 
AnswerRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Saurabh.Garg12-Jul-08 19:58
Saurabh.Garg12-Jul-08 19:58 
GeneralRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Marc Clifton13-Jul-08 3:04
mvaMarc Clifton13-Jul-08 3:04 
GeneralRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Saurabh.Garg13-Jul-08 4:28
Saurabh.Garg13-Jul-08 4:28 
I don't do much C# so I am not sure how it sets the folder for a project but in VC++ it is like this.

"Configuration Properties" -> "Output Directory" : Sets the output directory for the entire project. By default it is set to $(SolutionDir)$(ConfigurationName) so the Release or Debug folder is created in the folder where solution file is located.

"Configuration Properties" -> "Intermediate Directory" : Sets the intermediate directory for the entire project. By default it is set to $(ConfigurationName) so the Release or Debug folder is created in the folder where project file is located.

Now if I have a solution with following organization:

FooBar
FooBar.sln
Project1
Project1.vcproject
Project2
Project2.vcproject
Project3
Project3.vcproject

I configure each project like this:
OutDir = $(SolutionDir)\Bin
IntDir = $(SolutionDir)\Temp\$(ProjectName)\$(ConfigurationName)

Note: If you want both debug and release binaries the add D to the debug configuration, otherwise this setting will only contain binaries from the last build.

Having said this, in VC++, you can configure path of each file produced separately. So if for some reason you wany PDB files in some other folder then go to "Configuration Properties" -> C\C++ -> Output files and set "Program Datbase file name" to any thing you want.

Also check out macros when setting a path, there are lots of useful folders defined as macros.


Setting project as reference works as well but well thats not how native developers do it Smile | :)

-Saurabh
GeneralRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Marc Clifton13-Jul-08 5:43
mvaMarc Clifton13-Jul-08 5:43 
GeneralRe: WTF: Linker can only find inline functions [modified] - Solved Pin
Saurabh.Garg13-Jul-08 4:30
Saurabh.Garg13-Jul-08 4:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.