Click here to Skip to main content
15,894,180 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how to get substring of a CString Pin
David Crow26-Jan-09 17:16
David Crow26-Jan-09 17:16 
AnswerRe: how to get substring of a CString Pin
vijith.squadz26-Jan-09 19:15
professionalvijith.squadz26-Jan-09 19:15 
QuestionButton Code "DEFPUSHBUTTON" code not receving control Pin
ForNow26-Jan-09 15:47
ForNow26-Jan-09 15:47 
QuestionRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
«_Superman_»26-Jan-09 17:36
professional«_Superman_»26-Jan-09 17:36 
AnswerRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
ForNow26-Jan-09 23:06
ForNow26-Jan-09 23:06 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
«_Superman_»26-Jan-09 23:10
professional«_Superman_»26-Jan-09 23:10 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
ForNow27-Jan-09 2:47
ForNow27-Jan-09 2:47 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
JudyL_MD27-Jan-09 3:35
JudyL_MD27-Jan-09 3:35 
ForNow wrote:
case WM_COMMAND:
switch (LOWORD(wParam))
{
switch (LOWORD (wParam))
{
case IDCANCEL1:
DestroyWindow(hwndDlg);
hwndDlg = NULL;
break;
}
}


If this is not a cut/paste error, remove one of these switch statements so that you have:
case WM_COMMAND:
switch (LOWORD (wParam))
{
case IDCANCEL1:
DestroyWindow(hwndDlg);
hwndDlg = NULL;
break;
}

Judy

Be wary of strong drink. It can make you shoot at tax collectors - and miss.
Lazarus Long, "Time Enough For Love" by Robert A. Heinlein

GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
ForNow27-Jan-09 6:04
ForNow27-Jan-09 6:04 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
Mark Salsbery27-Jan-09 6:15
Mark Salsbery27-Jan-09 6:15 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
ForNow27-Jan-09 6:40
ForNow27-Jan-09 6:40 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
Mark Salsbery27-Jan-09 6:52
Mark Salsbery27-Jan-09 6:52 
GeneralRe: Button Code "DEFPUSHBUTTON" code not receving control Pin
ForNow27-Jan-09 13:13
ForNow27-Jan-09 13:13 
Questionheap corruption after call to select() [modified] Pin
aliusam26-Jan-09 13:59
aliusam26-Jan-09 13:59 
AnswerRe: heap corruption after call to select() Pin
Cosmic Egg29-Jan-09 9:43
Cosmic Egg29-Jan-09 9:43 
QuestionHaving trouble with IOleCommandTarget interface Pin
Haim Nachum26-Jan-09 10:09
Haim Nachum26-Jan-09 10:09 
AnswerRe: Having trouble with IOleCommandTarget interface Pin
«_Superman_»26-Jan-09 17:32
professional«_Superman_»26-Jan-09 17:32 
GeneralRe: Having trouble with IOleCommandTarget interface Pin
Haim Nachum27-Jan-09 2:26
Haim Nachum27-Jan-09 2:26 
QuestionVC++ 2008 Application and MSI Package Pin
pratap198026-Jan-09 6:39
pratap198026-Jan-09 6:39 
AnswerRe: VC++ 2008 Application and MSI Package Pin
Stuart Dootson26-Jan-09 7:06
professionalStuart Dootson26-Jan-09 7:06 
GeneralRe: VC++ 2008 Application and MSI Package Pin
pratap198026-Jan-09 7:28
pratap198026-Jan-09 7:28 
AnswerRe: VC++ 2008 Application and MSI Package Pin
Randor 26-Jan-09 8:02
professional Randor 26-Jan-09 8:02 
GeneralRe: VC++ 2008 Application and MSI Package Pin
pratap198026-Jan-09 11:04
pratap198026-Jan-09 11:04 
QuestionHide some lines of RichEditCtrl Pin
SutterA25-Jan-09 22:17
SutterA25-Jan-09 22:17 
AnswerRe: Hide some lines of RichEditCtrl Pin
Stuart Dootson26-Jan-09 0:13
professionalStuart Dootson26-Jan-09 0:13 

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.