Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

is it possible to display a window .without using windowclass

1 Answers   E Logic,


What function is used to disable a control at runtime?

7 Answers  


Psychic Window Technique

2 Answers   E Logic, Wild Net,


what is the use of Mutex and critical section

2 Answers  


What is userdefine Messages in MFC?

1 Answers   HCL,


What view class enables you to use an edit control as a view?

1 Answers  


If application hangs while SendMessage is waiting for the result, how you handle it?

2 Answers  


Given two processes, how can they share memory?

2 Answers   Microsoft,


What is the base class for most MFC classes?

7 Answers   CMC, Siemens,


Explain about MDI and CMultiDocTemplate ?

2 Answers  


1)How to change a text of a button as Dynamically?

1 Answers   HCL,


How to handle dynamic menus in MFC?

3 Answers   HCL,


Categories