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.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
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.