Board index » Visual Studio » MFC Dialog

MFC Dialog

Visual Studio167
How can i insert a dialog inside a dialog Not propertypage



thanks for help


-
 

Re:MFC Dialog





"mido1971" wrote:



Quote
How can i insert a dialog inside a dialog Not propertypage



Make the inserting dialog a child of the another one. IOW, it should have

WS_CHILD

style (and also likely not to have WS_BORDER) and get created by

CWnd::Create method [which should be called from within the container-dlg].



--

======

Arman





-

Re:MFC Dialog

On Feb 11, 9:39 am, mido1971 <mido1...@discussions.microsoft.com>

wrote:

Quote
How can i insert a dialog inside a dialog Not propertypage





www.codeproject.com/dialog/CRHChildDialog.asp">www.codeproject.com/dialog/CRHChildDialog.asp



---

Ajay



-

Re:MFC Dialog

Create the dialog as a child dialog.

joe

On Sun, 11 Feb 2007 06:39:00 -0800, mido1971 <mido1971@discussions.microsoft.com>wrote:



Quote
How can i insert a dialog inside a dialog Not propertypage



thanks for help

Joseph M. Newcomer [MVP]

email: newcomer@flounder.com

Web: www.flounder.com">www.flounder.com

MVP Tips: www.flounder.com/mvp_tips.htm">www.flounder.com/mvp_tips.htm

-