Click here to Skip to main content
15,890,741 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Bjarne Stroustrup's Puzzle Pin
Tim Deveaux26-Dec-00 5:00
Tim Deveaux26-Dec-00 5:00 
GeneralRe: Bjarne Stroustrup's Puzzle Pin
Erik Funkenbusch26-Dec-00 8:09
Erik Funkenbusch26-Dec-00 8:09 
GeneralRe: Bjarne Stroustrup's Puzzle Pin
Michael Dunn26-Dec-00 21:23
sitebuilderMichael Dunn26-Dec-00 21:23 
GeneralRe: Bjarne Stroustrup's Puzzle Pin
Masoud Samimi27-Dec-00 1:09
Masoud Samimi27-Dec-00 1:09 
GeneralRe: Bjarne Stroustrup's Puzzle Pin
Erik Funkenbusch27-Dec-00 8:47
Erik Funkenbusch27-Dec-00 8:47 
Generalbig problem! Pin
Satervalley25-Dec-00 20:10
Satervalley25-Dec-00 20:10 
GeneralRe: big problem! Pin
l a u r e n25-Dec-00 22:08
l a u r e n25-Dec-00 22:08 
GeneralRe: big problem! Pin
Satervalley26-Dec-00 14:26
Satervalley26-Dec-00 14:26 
yes,I have a Dialog callback procedure like below:

INT_PTR CALLBACK DialogProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam)
{
RQCDialog * pDialog;

switch (uMsg)
{
case WM_INITDIALOG:
...;
return TRUE;
case WM_COMMAND:
if(LOWORD(wParam) == IDOK)
{
::EndDialog(hwndDlg,1);
return TRUE;
}
if(LOWORD(wParam) == IDCANCEL)
{
::EndDialog(hwndDlg,0);
return TRUE;
}
return FALSE;
case WM_PAINT:
...;
return TRUE;
}
return FALSE;
}

and I call DialogBoxParam like use DialogProc as lpDialogFunc parameter.the problem still there.Confused | :confused:
Questionenhance the Scribble activex control to support multiple documents? Pin
Rajesh Honnawarkar25-Dec-00 18:30
Rajesh Honnawarkar25-Dec-00 18:30 
GeneralEN_CHANGE leads endless loop Pin
Suha Aktan25-Dec-00 6:37
Suha Aktan25-Dec-00 6:37 
GeneralRe: EN_CHANGE leads endless loop Pin
l a u r e n25-Dec-00 21:56
l a u r e n25-Dec-00 21:56 
GeneralRe: EN_CHANGE leads endless loop Pin
Suha Aktan28-Dec-00 4:09
Suha Aktan28-Dec-00 4:09 
Questiondisplay numbers in a list boxt? Pin
24-Dec-00 23:41
suss24-Dec-00 23:41 
AnswerRe: display numbers in a list boxt? Pin
Michael Dunn25-Dec-00 15:00
sitebuilderMichael Dunn25-Dec-00 15:00 
QuestionHow much memory a specific program is using? Pin
24-Dec-00 20:37
suss24-Dec-00 20:37 
AnswerRe: How much memory a specific program is using? Pin
l a u r e n27-Dec-00 4:38
l a u r e n27-Dec-00 4:38 
GeneralManage Controlls On Rebar Pin
24-Dec-00 18:06
suss24-Dec-00 18:06 
Generaltoo many dialogs to manage... Pin
MengYan24-Dec-00 16:51
MengYan24-Dec-00 16:51 
GeneralRe: too many dialogs to manage... Pin
Masoud Samimi25-Dec-00 2:26
Masoud Samimi25-Dec-00 2:26 
GeneralRe: too many dialogs to manage... Pin
MengYan26-Dec-00 21:14
MengYan26-Dec-00 21:14 
GeneralRe: too many dialogs to manage... Pin
l a u r e n25-Dec-00 22:03
l a u r e n25-Dec-00 22:03 
GeneralMonitoring memory usage system-wide Pin
24-Dec-00 13:38
suss24-Dec-00 13:38 
GeneralCView Drop Targets Pin
Greg Hedlund24-Dec-00 4:37
Greg Hedlund24-Dec-00 4:37 
GeneralRe: CView Drop Targets Pin
Michael Dunn24-Dec-00 6:40
sitebuilderMichael Dunn24-Dec-00 6:40 
GeneralTroubled with "User BreakPoint at 0x......" debugging my VC++ Project Pin
23-Dec-00 10:06
suss23-Dec-00 10:06 

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.