How many types of dialog box are their
Answers were Sorted based on User's Feedback
Answer / kchenthilk
2 Types of Dialogs.
1.Modal Dialog
create object and to display obj.Domodal();
2.Modeless Dialog
create Dialog and to display obj.ShowWindow();
Is This Answer Correct ? | 38 Yes | 3 No |
Answer / aditya kumar.
There are three types of dialog box in window.
1)System Modal Dialog Box.
System Modal dialog boxes does not allow to interact with
other then Dialog Box.
Ex; Password Change Dialog Box (Ctrl+Alt+Delete).
2)Modal Dialog Box.
Modal dialog boxes, which require the user to respond
before continuing the program.But it allow to interact with
other ruing application.
Ex: File New And Open Dialog Box.
3)Modeless Dialog Box.
Modeless dialog boxes, which stay on the screen and are
available for use at any time but permit other user activities.
Ex: Find And Replace.
Is This Answer Correct ? | 31 Yes | 1 No |
Answer / ganesh
There are two types of dialogs
1. Modal Dialog: Modal dialog boxes, which require the user
to respond before continuing the program
2. Modeless dialog :Modeless dialog boxes, which stay on
the screen and are available for use at any time but permit
other user activities
Is This Answer Correct ? | 22 Yes | 4 No |
Answer / madhan
In java script
* 3 dialog boxes are available
--alert
--prompt
--Confirm
Is This Answer Correct ? | 11 Yes | 6 No |
Answer / oyindrila bhattacharjee
There are 3 types of dialog boxes: modeless, modal, and
system modal.
1. Modal :
Modal dialog boxes are generally used inside a program,
to display messages, and to set program parameters. Modal
dialog boxes come to the front of the screen, and you may
not use the program while the modal dialog box is open. to
continue using the program, the modal dialog box must be closed.
2. System Modal :
System modal dialog boxes are like modal boxes, except
that they supersede the entire desktop area. When a system
modal dialog box is open, nothing else on the screen can be
clicked or selected.
3. Modeless :
Modeless dialog boxes are able to be deselected, and
control can be taken away from a modeless dialog box and
transferred to some other window. Modeless dialog boxes are
frequently used as a fast and easy way to create a window,
without having to register a window class. Modeless dialog
boxes are common in the Windows control panel.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / aarohi
There are three types of dialog box in window.
1)System Modal Dialog Box.
System Modal dialog boxes does not allow to interact with
other then Dialog Box.
Ex; Password Change Dialog Box (Ctrl+Alt+Delete).
2)Modal Dialog Box.
Modal dialog boxes, which require the user to respond
before continuing the program.But it allow to interact with
other ruing application.
Ex: File New And Open Dialog Box.
3)Modeless Dialog Box.
Modeless dialog boxes, which stay on the screen and are
available for use at any time but permit other user activities.
Ex: Find And Replace.
Is This Answer Correct ? | 0 Yes | 1 No |
What function is called by a document class to notify views that the document has been changed?
How to create a Modeless Dialog?
What is the difference between hinsrtance and hprevinstance in WinMain function?
How to handle RTTI in MFC ?
Difference between Debug and Release versions?
what is the difference between compiling and building?
What is the base class for MFC
what is the size of a process
How to update all the views whenver document got updated ?
Q1. A. What is unary operator? List out the different operators involved in the unary operator. B. What is an adjust field format flag? Q2. A. Distinguish between a # include and #define. B. Can a list of string be stored within a two dimensional array? Q3. A. Explain how a pointer to function can be declared in C++? B. List the merits and demerits of declaring a nested class in C++? Q4. A. What are the syntactic rules to be avoid ambiguity in multiple inheritence? B. Explain the operation of overloading of an assignment operator. Q5. A. Explain how the virtual base class is different from the conventional base classes of the opps. B. Explain how an exception handler is defined and invoked in a Program. Q6. A. What is a binary file? List the merits and demerits of the binary file usagein C++. B. Write short notes on Text Manipulation Routines. C. Write bites in Turbo c++ Header ("Include") Files.
What is a message map?
In VC++ How to transfer between one exe to another exe while running..