Click here to Skip to main content
15,889,879 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
AnswerRe: error C2679: binary '>>' : no operator found Pin
CODEPC28-Jan-10 10:18
CODEPC28-Jan-10 10:18 
Questionplaying .wav files using double buffering approach Pin
Danzy8328-Jan-10 8:45
Danzy8328-Jan-10 8:45 
AnswerRe: playing .wav files using double buffering approach Pin
enhzflep29-Jan-10 20:29
enhzflep29-Jan-10 20:29 
QuestionUsing Google Map in MFC application? Pin
CODEPC28-Jan-10 7:22
CODEPC28-Jan-10 7:22 
GeneralRe: Using Google Map in MFC application? Pin
David Crow28-Jan-10 8:53
David Crow28-Jan-10 8:53 
AnswerRe: Using Google Map in MFC application? Pin
loyal ginger28-Jan-10 10:07
loyal ginger28-Jan-10 10:07 
GeneralRe: Using Google Map in MFC application? Pin
CODEPC28-Jan-10 11:40
CODEPC28-Jan-10 11:40 
AnswerRe: Using Google Map in MFC application? Pin
Nemanja Trifunovic28-Jan-10 10:29
Nemanja Trifunovic28-Jan-10 10:29 

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.