Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiontracking down linker errors Pin
Calin Negru27-Aug-22 3:50
Calin Negru27-Aug-22 3:50 
AnswerRe: tracking down linker errors Pin
Mircea Neacsu27-Aug-22 4:03
Mircea Neacsu27-Aug-22 4:03 
SuggestionRe: tracking down linker errors Pin
Richard MacCutchan27-Aug-22 6:44
mveRichard MacCutchan27-Aug-22 6:44 
General[solved]Re: tracking down linker errors Pin
Calin Negru27-Aug-22 8:01
Calin Negru27-Aug-22 8:01 
QuestionUsing nlohmann JSON to insert more data Pin
Kiran Satish26-Aug-22 7:03
Kiran Satish26-Aug-22 7:03 
AnswerRe: Using nlohmann JSON to insert more data Pin
Mircea Neacsu26-Aug-22 8:53
Mircea Neacsu26-Aug-22 8:53 
QuestionQuestion About CToolTipCtrl Pin
ForNow24-Aug-22 8:33
ForNow24-Aug-22 8:33 
AnswerRe: Question About CToolTipCtrl Pin
Victor Nijegorodov24-Aug-22 21:53
Victor Nijegorodov24-Aug-22 21:53 
GeneralRe: Question About CToolTipCtrl Pin
ForNow24-Aug-22 22:19
ForNow24-Aug-22 22:19 
GeneralRe: Question About CToolTipCtrl Pin
Victor Nijegorodov24-Aug-22 23:56
Victor Nijegorodov24-Aug-22 23:56 
GeneralRe: Question About CToolTipCtrl Pin
ForNow25-Aug-22 1:36
ForNow25-Aug-22 1:36 
GeneralRe: Question About CToolTipCtrl Pin
Victor Nijegorodov25-Aug-22 2:18
Victor Nijegorodov25-Aug-22 2:18 
GeneralRe: Question About CToolTipCtrl Pin
Victor Nijegorodov25-Aug-22 2:44
Victor Nijegorodov25-Aug-22 2:44 
GeneralRe: Question About CToolTipCtrl Pin
ForNow25-Aug-22 3:01
ForNow25-Aug-22 3:01 
QuestionProperly document C++ code for use in Intellisense ? Pin
Maximilien22-Aug-22 5:14
Maximilien22-Aug-22 5:14 
AnswerRe: Properly document C++ code for use in Intellisense ? Pin
Richard MacCutchan22-Aug-22 21:28
mveRichard MacCutchan22-Aug-22 21:28 
QuestionNeed insight as to how VS2008 parses vcproj files Pin
charlieg21-Aug-22 8:45
charlieg21-Aug-22 8:45 
AnswerRe: Need insight as to how VS2008 parses vcproj files Pin
Mircea Neacsu21-Aug-22 10:35
Mircea Neacsu21-Aug-22 10:35 
GeneralRe: Need insight as to how VS2008 parses vcproj files Pin
charlieg22-Aug-22 0:56
charlieg22-Aug-22 0:56 
GeneralRe: Need insight as to how VS2008 parses vcproj files Pin
Mircea Neacsu22-Aug-22 1:45
Mircea Neacsu22-Aug-22 1:45 
GeneralRe: Need insight as to how VS2008 parses vcproj files Pin
charlieg22-Aug-22 1:53
charlieg22-Aug-22 1:53 
AnswerRe: Need insight as to how VS2008 parses vcproj files Pin
charlieg28-Mar-23 9:40
charlieg28-Mar-23 9:40 
QuestionDialogBox fuction not executing its procedure [SOLVED] Pin
coco24318-Aug-22 23:39
coco24318-Aug-22 23:39 
Hi,

I am trying to compile a project who use message crackers and is different from those wich I am used with(those projects that uses WindProc procedure and the other functions automatically created by the VS IDE)


This is the windows main function where I call DialogBox function:

C++
int WINAPI WinMain(HINSTANCE hinstExe, HINSTANCE hinstPrev, LPSTR pszCmdLine, int nCmdShow)
{


DialogBox(hinstExe, MAKEINTRESOURCE(IDD_DIRWALK), NULL, Dlg_Proc);

return(0);
}


If I place a breakpoint on the Dlg_Proc preocedure, the program never goes there to start it:

C++
BOOL CALLBACK Dlg_Proc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
	switch (uMsg)
	{
	chHANDLE_DLGMSG(hwnd, WM_INITDIALOG, Dlg_OnInitDialog);
	chHANDLE_DLGMSG(hwnd, WM_SIZE, Dlg_OnSize);

	}

	return(FALSE);
}


Here is the resource for the dialog box:

C++
// Dialog
IDD_DIRWALK DIALOG DISCARDABLE 10, 18, 250, 250
STYLE WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP|
              WS_VISIBLE| WS_CAPTION | WS_SYSMENU |WS_THICKFRAME
CAPTION "Directory Walk"
FONT 8, "System"
BEGIN
       LISTBOX     IDC_TREE,0,0,0,0,NOT LBS_NOTIFY |
	                      LBX_NOINTEGRAL_HEIGHT | NOT WS_BORDER |
			   WS_VSCROLL | WS_HSCROLL | WS_GROUP |
			   WS_TABSTOP
END


Here is the macro definition for messages:

C++
#define chHANDLE_DLGMSG(hWnd, message, fn)                                         \
	case (message):                                                                \
return (SetDlgMsgResult(hwnd, uMsg, HANDLE_##message((hwnd),  (wParam), (lParam), (fn))))



I don't think that the problem could be on the resource code for dialog box as long as the program even don't execute de
dialog box procedure.

If you know where the problem could be, please help me.

Thank you,

modified 23-Aug-22 12:32pm.

AnswerRe: DialogBox fuction not executing its procedure Pin
Richard MacCutchan19-Aug-22 0:38
mveRichard MacCutchan19-Aug-22 0:38 
GeneralRe: DialogBox fuction not executing its procedure Pin
coco24319-Aug-22 1:14
coco24319-Aug-22 1:14 

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.