Click here to Skip to main content
15,898,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: v[f(x)]+=j; Pin
pupillo020-Feb-14 21:14
pupillo020-Feb-14 21:14 
GeneralRe: v[f(x)]+=j; Pin
jschell21-Feb-14 9:07
jschell21-Feb-14 9:07 
QuestionTouch down event with hook(WH_MOUSE_LL) and WM_LBUTTON Pin
cedricvictor19-Feb-14 0:32
cedricvictor19-Feb-14 0:32 
QuestionRe: Touch down event with hook(WH_MOUSE_LL) and WM_LBUTTON Pin
Randor 19-Feb-14 8:31
professional Randor 19-Feb-14 8:31 
AnswerRe: Touch down event with hook(WH_MOUSE_LL) and WM_LBUTTON Pin
cedricvictor19-Feb-14 14:58
cedricvictor19-Feb-14 14:58 
AnswerRe: Touch down event with hook(WH_MOUSE_LL) and WM_LBUTTON Pin
Randor 19-Feb-14 15:36
professional Randor 19-Feb-14 15:36 
AnswerRe: Touch down event with hook(WH_MOUSE_LL) and WM_LBUTTON Pin
Randor 19-Feb-14 15:43
professional Randor 19-Feb-14 15:43 
GeneralRe: Touch down event with hook(WH_MOUSE_LL) and WM_LBUTTON Pin
cedricvictor19-Feb-14 18:05
cedricvictor19-Feb-14 18:05 
QuestionON_COMMAND macro in MFC - opinions / explanations please. Pin
Vaclav_18-Feb-14 4:01
Vaclav_18-Feb-14 4:01 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Richard MacCutchan18-Feb-14 4:30
mveRichard MacCutchan18-Feb-14 4:30 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Vaclav_18-Feb-14 4:46
Vaclav_18-Feb-14 4:46 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Richard MacCutchan18-Feb-14 4:52
mveRichard MacCutchan18-Feb-14 4:52 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
mistletoe_dean18-Feb-14 14:14
mistletoe_dean18-Feb-14 14:14 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Albert Holguin18-Feb-14 16:44
professionalAlbert Holguin18-Feb-14 16:44 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Malli_S18-Feb-14 19:42
Malli_S18-Feb-14 19:42 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Erudite_Eric18-Feb-14 21:34
Erudite_Eric18-Feb-14 21:34 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Richard MacCutchan18-Feb-14 22:09
mveRichard MacCutchan18-Feb-14 22:09 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Albert Holguin18-Feb-14 16:45
professionalAlbert Holguin18-Feb-14 16:45 
AnswerRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Erudite_Eric18-Feb-14 21:38
Erudite_Eric18-Feb-14 21:38 
AnswerRe: ON_COMMAND macro in MFC - opinions / explanations please. Pin
Randor 19-Feb-14 8:43
professional Randor 19-Feb-14 8:43 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please SOLVED Pin
Vaclav_19-Feb-14 16:51
Vaclav_19-Feb-14 16:51 
GeneralRe: ON_COMMAND macro in MFC - opinions / explanations please SOLVED Pin
Richard MacCutchan19-Feb-14 21:47
mveRichard MacCutchan19-Feb-14 21:47 
Questionglobal touch event with sound using mfc Pin
cedricvictor18-Feb-14 3:09
cedricvictor18-Feb-14 3:09 
AnswerRe: global touch event with sound using mfc Pin
Software_Developer18-Feb-14 3:34
Software_Developer18-Feb-14 3:34 
QuestionMSBuild Project Files Pin
Member 1060570218-Feb-14 1:24
Member 1060570218-Feb-14 1:24 
If this is not the proper place for this question, please let me know where I can post it.

I am working on a bunch of MSBuild project files that were created from scratch. We are in the middle of upgrading to Visual Studios 2013 so a lot of the paths to libraries need to be changed. I am having trouble with the Microsoft Libraries because of the spaces that are in the path.

Here is the line that sets the base of the path to get appended later in the project file:

<CRT_LIB_PATH>C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\lib</CRT_LIB_PATH>


Later there are lines similar to the following:

<LINK_LIBS>$(LINK_LIBS) '"$(CRT_LIB_PATH)\msvcrt$(DEBUG_SUFFIX).lib"'</LINK_LIBS>


In the second line, I have attempted single quotes, double quotes, single quotes surrounded by double quotes, double quotes surrounded by single quotes. Nothing had helped.

How to I properly put this path into the project file?

Thanks,
Kevin


What happens is everything before the "12.0" is lost and linker is not able to find the library.

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.