Click here to Skip to main content
15,896,269 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Build for 64bit Pin
Richard MacCutchan21-Feb-13 23:55
mveRichard MacCutchan21-Feb-13 23:55 
AnswerRe: Build for 64bit Pin
«_Superman_»23-Feb-13 15:51
professional«_Superman_»23-Feb-13 15:51 
GeneralRe: Build for 64bit Pin
john563224-Feb-13 20:28
john563224-Feb-13 20:28 
QuestionButon Control Text Display problem in MFC Pin
Lakshman c b21-Feb-13 17:04
Lakshman c b21-Feb-13 17:04 
AnswerRe: Buton Control Text Display problem in MFC Pin
yu-jian23-Feb-13 3:30
yu-jian23-Feb-13 3:30 
GeneralRe: Buton Control Text Display problem in MFC Pin
Lakshman c b24-Feb-13 18:34
Lakshman c b24-Feb-13 18:34 
GeneralRe: Buton Control Text Display problem in MFC Pin
yu-jian24-Feb-13 21:31
yu-jian24-Feb-13 21:31 
GeneralRe: Buton Control Text Display problem in MFC Pin
SoMad24-Feb-13 19:07
professionalSoMad24-Feb-13 19:07 
Questionsystem() in MFC Pin
RomTibi21-Feb-13 9:51
RomTibi21-Feb-13 9:51 
AnswerRe: system() in MFC Pin
Garth J Lancaster21-Feb-13 10:16
professionalGarth J Lancaster21-Feb-13 10:16 
GeneralRe: system() in MFC Pin
Stephen Hewitt21-Feb-13 14:55
Stephen Hewitt21-Feb-13 14:55 
GeneralRe: system() in MFC Pin
Garth J Lancaster21-Feb-13 15:03
professionalGarth J Lancaster21-Feb-13 15:03 
AnswerRe: system() in MFC Pin
Rajesh R Subramanian21-Feb-13 19:17
professionalRajesh R Subramanian21-Feb-13 19:17 
AnswerRe: system() in MFC Pin
Richard MacCutchan21-Feb-13 22:30
mveRichard MacCutchan21-Feb-13 22:30 
GeneralRe: system() in MFC Pin
Albert Holguin24-Feb-13 7:38
professionalAlbert Holguin24-Feb-13 7:38 
QuestionDoubt in c++ Pin
Jackkrishjk21-Feb-13 0:17
Jackkrishjk21-Feb-13 0:17 
AnswerRe: Doubt in c++ Pin
Richard MacCutchan21-Feb-13 1:26
mveRichard MacCutchan21-Feb-13 1:26 
AnswerRe: Doubt in c++ Pin
Alan Balkany21-Feb-13 4:33
Alan Balkany21-Feb-13 4:33 
GeneralRe: Doubt in c++ Pin
SajeeshCheviry21-Feb-13 5:31
SajeeshCheviry21-Feb-13 5:31 
AnswerRe: Doubt in c++ Pin
David Crow21-Feb-13 5:56
David Crow21-Feb-13 5:56 
AnswerRe: Doubt in c++ Pin
Maximilien21-Feb-13 8:28
Maximilien21-Feb-13 8:28 
QuestionTracing Exceptions Originated from Other Application Pin
Shubha Debnath21-Feb-13 0:05
Shubha Debnath21-Feb-13 0:05 
AnswerRe: Tracing Exceptions Originated from Other Application Pin
Alan Balkany21-Feb-13 4:35
Alan Balkany21-Feb-13 4:35 
GeneralRe: Tracing Exceptions Originated from Other Application Pin
Shubha Debnath22-Feb-13 0:29
Shubha Debnath22-Feb-13 0:29 
<pre lang="text">Thanks a lot <b>Alan </b>
I tried the following code. It is giving me the title of every open windows. But I want only the exception popup window( i.e. error windows generated from other applications) from them.How could I get this. Plz help me.</pre>

<pre lang="c++">
BOOL CALLBACK MyEnumProc(HWND hWnd, LPARAM lParam)
{
TCHAR title[500];
ZeroMemory(title, sizeof(title));

GetWindowText(hWnd, title, sizeof(title)/sizeof(title[0]));
CString msg=L"";
msg.Format(_T("Value is %s\n"), title);
AfxMessageBox(msg);

return TRUE;
}


void CEnumWindowTest1Dlg::MyFunc(void) //(called by main)
{
EnumWindows(MyEnumProc, 0);
}
</pre>
GeneralRe: Tracing Exceptions Originated from Other Application Pin
Alan Balkany22-Feb-13 4:01
Alan Balkany22-Feb-13 4:01 

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.