Background: I'm developing a C++ MFC application that can run both GUI and Console modes. But at both time user need to run application using command prompt with some argument. When Init the application it checks the use input arguments on command prompt and decide to run in console mode or GUI mode. This application need to work with multiple language. So I'm using string table to store display texts.
So here I use this function to attached existing command prompt to application to show status when the application run as console mode.
BOOL CMyclass::EnableConsolePrinting(){
BOOL GotConsoleAttach = FALSE;
if (AttachConsole(ATTACH_PARENT_PROCESS))
{
int osfh = _open_osfhandle((intptr_t) GetStdHandle(STD_OUTPUT_HANDLE), 8);
if ((HANDLE)osfh != INVALID_HANDLE_VALUE)
{
*stdout = *_tfdopen(osfh, _T("a"));
GotConsoleAttach = TRUE;
}
}
return GotConsoleAttach;
}
And then prints the status to console like this.
this->EnableConsolePrinting();
cout << CMsg(IDS_STRING_ERROR_MESSAGE);
In GUI mode I use this method to show text in a label.
lblError.SetWindowTextW(CMsg(IDS_STRING_ERROR_MESSAGE));
Question: Both method compile and run fine. But GUI mode shows correct string and Console prints some meaning less code like this. 00C2D210 for same string. Any idea?
CMsg? It's not a standard Windows class (searching MSDN shows something completely different), so could you please edit your post to include the class definition of it? – Joachim Pileborg Feb 8 at 9:51#define MAKEINTRESOURCE MAKEINTRESOURCEW#define CMsg(x) CString(MAKEINTRESOURCE(x))– Nayana Adassuriya Feb 8 at 9:58