How to create a Modeless Dialog?

Answers were Sorted based on User's Feedback



How to create a Modeless Dialog? ..

Answer / arvin

Call the CDialogs Create() function.

NewDialog *dlg;
dlg = new NewDialog;
dlg->Create(IDR_MYDIALOG);
dlg->ShowWindow(1);

Is This Answer Correct ?    17 Yes 2 No

How to create a Modeless Dialog? ..

Answer / sonali d

CModeLess *m_pmodeless = new CModeLess(this);
m_pmodeless->Create(CModeLess::IDD);
m_pmodeless->ShowWindow(SW_SHOW);

Is This Answer Correct ?    5 Yes 1 No

How to create a Modeless Dialog? ..

Answer / ctharam

to create Modeless DialogBox as programming level is:

For Example:-

CModeLess *ModeLessDialogBox = new CModeLess();

ModeLessDialogBox->Create(null,IDB_DIALOG1);

ModeLessDialogBox->ShowWindow(SW_SHOW);

Is This Answer Correct ?    1 Yes 2 No

How to create a Modeless Dialog? ..

Answer / bijender singh

1.First you write the CDialog ctor without any parameter.
2.Then create object of CDialog class & call the Create()
function.
3.After creating call the ShowWindow() function.
*Instead of ShowWindow() you can us the WS_VISIBLE in
dialog rc script file.

While deleting call the DestroyWindow() not EndDialog()
which is for Modal dialog.

Is This Answer Correct ?    0 Yes 3 No

How to create a Modeless Dialog? ..

Answer / c.vidhya

CDialog class is base class and Creatte is member function
CDialog dlg;
dlg.Create(LPCTSTR TemplateName,ParentWnd);

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More MFC Interview Questions

How can i change the color of a dropdowncombobox elements

2 Answers  


How to convert the content of buffer into lower case character.

3 Answers   E Logic,


Have you ever used win32 APIs ?

4 Answers   Microsoft,


1) How do you Destroy a Dialog Box ?

2 Answers   Honeywell,


if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first

10 Answers   Siemens, Symphony,






What are the advantages of using Doc/View or SDI over DialogBox

2 Answers  


What is userdefine Messages in MFC?

1 Answers   HCL,


Explain Doc/View architecture

6 Answers   Huawei,


What is LoadLibrary function returns?

7 Answers  


plzz tell me what we can do and dont in tally ERP & sap business one?

0 Answers  


what do you mean by psychic window?

2 Answers   Patni,


if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?

2 Answers   Patni,


Categories