I think you can't help me without knowing QTs, however QT is a developer framework to design GUIs. It is cross-platform so you can have the same gui-feel on every os.
My application uses QT to render its interface but I recently encountered a big problem: my application loads a modeless dialog from an external mfc dll; because of mfc architecture...
I searched a little and I found I am trying to include B.h into A.h and A.h into B.h and this is not possible, this mechanism seems to be called "Header Guard"
the .h file of the control subclassed from CTabCtrl
And the error of IDD_MY_DIALOG undefined (that is NOT true, if i remove that include the compiling process goes okay) from the .h file of...
I am not very pratical with classes interaction and I would like to know why if I declare a CDialog member variable into my subclassed control's class, visual studio gives weird errors like error...
You're both right, the CWnd value of pParent was right, but pParent->m_hWnd was null (i was calling the child creation before the parent was created) and there was the WS_DLGFRAME style
I am a newbie with CWnd classes and I would like to know how I can implement a little child window inside another one using the CWnd class (I don't want the resource template)