Click here to Skip to main content
15,917,793 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionVS2008 EXE not working in another machine Pin
Anu_Bala28-Jan-10 19:36
Anu_Bala28-Jan-10 19:36 
AnswerRe: VS2008 EXE not working in another machine Pin
KingsGambit28-Jan-10 20:28
KingsGambit28-Jan-10 20:28 
QuestionLoad MFC regular DLL failed Pin
machengzhi28-Jan-10 19:16
machengzhi28-Jan-10 19:16 
AnswerRe: Load MFC regular DLL failed Pin
KingsGambit28-Jan-10 19:23
KingsGambit28-Jan-10 19:23 
GeneralRe: Load MFC regular DLL failed Pin
machengzhi28-Jan-10 19:29
machengzhi28-Jan-10 19:29 
GeneralRe: Load MFC regular DLL failed Pin
KingsGambit28-Jan-10 19:34
KingsGambit28-Jan-10 19:34 
GeneralRe: Load MFC regular DLL failed Pin
machengzhi28-Jan-10 19:38
machengzhi28-Jan-10 19:38 
GeneralRe: Load MFC regular DLL failed Pin
KingsGambit28-Jan-10 19:41
KingsGambit28-Jan-10 19:41 
GeneralRe: Load MFC regular DLL failed Pin
machengzhi28-Jan-10 19:55
machengzhi28-Jan-10 19:55 
GeneralRe: Load MFC regular DLL failed Pin
KingsGambit28-Jan-10 20:01
KingsGambit28-Jan-10 20:01 
GeneralRe: Load MFC regular DLL failed Pin
KingsGambit28-Jan-10 20:15
KingsGambit28-Jan-10 20:15 
GeneralRe: Load MFC regular DLL failed Pin
machengzhi3-Feb-10 20:36
machengzhi3-Feb-10 20:36 
QuestionRe: Load MFC regular DLL failed Pin
norish29-Jan-10 3:26
norish29-Jan-10 3:26 
AnswerRe: Load MFC regular DLL failed Pin
machengzhi2-Feb-10 15:27
machengzhi2-Feb-10 15:27 
QuestionHardcoded CString file path Pin
al250028-Jan-10 9:28
al250028-Jan-10 9:28 
AnswerRe: Hardcoded CString file path Pin
CPallini28-Jan-10 9:35
mveCPallini28-Jan-10 9:35 
al2500 wrote:
Path = "..\dir1\dir2\filename.ext";


'\' must be escaped (repeated since it is the escape character) in a string literal, change to
Path = "..\\dir1\\dir2\\filename.ext";



al2500 wrote:
Path = "abcd" + "abcd";

'+' is not the concatenation operator for string literals, you should change it to:
Path = "abcd" "abcd";

or
Path = "abcd";
Path += "abcd";

or
Path = CString("abcd") + CString("abcd");

Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

GeneralRe: Hardcoded CString file path Pin
Richard MacCutchan28-Jan-10 10:13
mveRichard MacCutchan28-Jan-10 10:13 
GeneralRe: Hardcoded CString file path Pin
CPallini28-Jan-10 10:35
mveCPallini28-Jan-10 10:35 
GeneralRe: Hardcoded CString file path Pin
Richard MacCutchan28-Jan-10 11:23
mveRichard MacCutchan28-Jan-10 11:23 
GeneralRe: Hardcoded CString file path Pin
al250028-Jan-10 11:31
al250028-Jan-10 11:31 
AnswerRe: Hardcoded CString file path Pin
Richard MacCutchan28-Jan-10 10:18
mveRichard MacCutchan28-Jan-10 10:18 
Questionerror C2679: binary '>>' : no operator found Pin
mlchavez28-Jan-10 8:52
mlchavez28-Jan-10 8:52 
AnswerRe: error C2679: binary '>>' : no operator found Pin
Richard MacCutchan28-Jan-10 9:11
mveRichard MacCutchan28-Jan-10 9:11 
GeneralRe: error C2679: binary '>>' : no operator found Pin
mlchavez28-Jan-10 9:39
mlchavez28-Jan-10 9:39 
GeneralRe: error C2679: binary '>>' : no operator found Pin
Richard MacCutchan28-Jan-10 9:46
mveRichard MacCutchan28-Jan-10 9:46 

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.