---
title: "Explain modeless dialog box ?"  
description: "Explain modeless dialog box ?"  
author: "Anonymous User"  
published: 2011-03-28  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/661/explain-modeless-dialog-box  
category: "visual c++"  
tags: ["visual c++"]  
reading_time: 1 minute  

---

# Explain modeless dialog box ?

A modaless dialogbox is on user can move back and forth between the poped up dialogbox and the parent (calling dialog) For creating a modless dialogbox. needs to follow follwing things.\
\
Ex. class MyDlg; // Class derived from CDialog.\
MyDlg myDlg; // create object\
myDlg.create(uint DialogId); // Call create method by providing the dialog resource id.\
provide the message handling and run loop.

## Answers

### Answer by Anonymous User

A modaless dialogbox is on user can move back and forth between the poped up dialogbox and the parent (calling dialog) For creating a modless dialogbox. needs to follow follwing things.\
\
Ex. class MyDlg; // Class derived from CDialog.\
MyDlg myDlg; // create object\
myDlg.create(uint DialogId); // Call create method by providing the dialog resource id.\
provide the message handling and run loop.


---

Original Source: https://www.mindstick.com/interview/661/explain-modeless-dialog-box

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
