what is the difference between SDI and MDI

Answers were Sorted based on User's Feedback



what is the difference between SDI and MDI..

Answer / neil

SDI can load only 1 document at a time,however it can have
multiple views in the same window using splitter windows
property.
example is a notepad in windows.

An MDI application has multiple child windows, each of
which corresponds to an individual document. Microsoft Word
is a good example of an MDI application.
Here also we can have splitter windows property, with same
view in diff. windows or diff. views in diff windows.

Is This Answer Correct ?    263 Yes 25 No

what is the difference between SDI and MDI..

Answer / dheeraj mehrotra

MDI = "Multiple Document Interface"
SDI = "Single Document Interface"

MDI is when your application consist of an MDI parent-form
that contains all the other window/forms that the app
consists of.

SDI is stand-alone, ordinary windows/forms that exists
independently
of each other.

computerscienceexpertise.com

Is This Answer Correct ?    137 Yes 16 No

what is the difference between SDI and MDI..

Answer / sachin moule

SDI - is single document interfase contain only one window
at a time but for MDI is multiple doc. int. it contain
multiple document at a time this all document will appear
as child window for MDI window .

Is This Answer Correct ?    69 Yes 14 No

what is the difference between SDI and MDI..

Answer / jai

mdi is a container control

sdi
is not container control

Is This Answer Correct ?    73 Yes 26 No

what is the difference between SDI and MDI..

Answer / zerozero

SDI:
 We can open only one document at a time, Ex: Notepad
 SDI App hold only 4 classes (
CView,CDoc,CFrameWnd,CWinApp)
 SDI App has CSingleDocTemplate and holds 3 classes

MDI
 We can open multiple docs simultaneously, example:
MS Word
&#61692; MDI holds 5 classes (CChildWnd<---
CMDIChildWnd,CDoc,Cview,CFrameWnd).
&#61692; MDI has CMultiDocTemplate and holds below classes.

CMultiDocTemplate* pDocTemplate;
pDocTemplate = new CMultiDocTemplate(
IDR_MDIAPPTYPE,
RUNTIME_CLASS(CMDIAPPDoc),
RUNTIME_CLASS(CChildFrame), // custom MDI
child frame
RUNTIME_CLASS(CMDIAPPView));
AddDocTemplate(pDocTemplate);

Is This Answer Correct ?    53 Yes 12 No

what is the difference between SDI and MDI..

Answer / tabrez ajaz

MDI means "Multiple Document Interface" &
SDI means "Single Docoment Interface"
Differences between both interfaces:-
1:- MDI supports multiple views means multiple windows at
the same time on the display screen. But
SDI supports one application window at a time.
2:-MDI supports many interfaces means we can handle many
applications at a time acoording to users requirements.But
SDI supports one interface means you can handle only one
application at a time

Is This Answer Correct ?    44 Yes 10 No

what is the difference between SDI and MDI..

Answer / ramesh alavala

SDI:
We can open only one document at a time, Ex: Notepad
SDI App hold only 4 classes (C View,C Doc,Underframe,CWinApp)
SDI is not container control.
SDI is stand-alone, ordinary windows/forms that exists
independently
of each other.
MDI:
We can open multiple docs simultaneously.
example:MS Word.
MDI holds 5 classes (CChildWnd<---
CMDIChildWnd,C Doc,C view,CFrameWnd).
mdi is a container control.
MDI is when your application consist of an MDI parent-form
that contains all the other window/forms.

Is This Answer Correct ?    29 Yes 5 No

what is the difference between SDI and MDI..

Answer / ctharam

SDI:-
1)(S)ingle (D)ocument (I)nterface
2)it can load only one document at a time
3)it has 4 kind of classes. they are CWinApp,CView,CDocument and CFramewnd
4)multiple view at same window
5)Notepad is an example

Where as in
MDI:-
1)(M)ultiple (D)ocument (I)nterface
2)it can load more than one document (0r) multiple documents at a time
3)it has 5 kind of classes.they are CChildWnd,CMDIChildWnd,CView,CDocument and CframeWnd
4)multiple views in different windows
5)MS -Word Document is an Example

Is This Answer Correct ?    22 Yes 1 No

what is the difference between SDI and MDI..

Answer / sarika patel

MDI: window also provides an organizing schema called MDI
for more complicated application such as a text editor.

SDI: most simple window application use a SDI fram the
clock, PIF editor and notepad are eg. of SDI .

Is This Answer Correct ?    24 Yes 6 No

what is the difference between SDI and MDI..

Answer / shakuntala

The full answer is available in MSDN, but in a nutshell SDI or a single document interface is a window that can only handle one document at a time per window. An example of an SDI is Notepad (you can only edit one text file per Notepad window. If you want to edit two files, you need two Notepad windows).

An MDI or multiple document interface is a window that can handle more than one document at a time (usually by creating subwindows). An example of an MDI is Visual Studio. You can have multiple Cpp files open in the same Visual Studio window (you navigate through each CPP file by using the tabs, or the Window menu). Most (but not all) MDIs implement a tabbed style interface similar to Visual Studio to navigate between documents.

Is This Answer Correct ?    15 Yes 5 No

Post New Answer

More MFC Interview Questions

What is the difference between Struts and JSF? Pls list some most suitable differences.

0 Answers  


What MFC base classes provide support for ActiveX controls?

2 Answers   Wipro,


What is document-view architecture ? Give me one real time example for SDI ?

2 Answers  


Difference between Cclint DC & Cpaint Dc

6 Answers   E Logic,


what is the use of CWinApp class?

3 Answers   Mphasis,






what is the component of CLR ?

8 Answers   AZTEC, Symphony,


Psychic Window Technique

2 Answers   E Logic, Wild Net,


What is the use of UpdateData funciton ?

7 Answers  


How do I create a dialog box in mfc?

0 Answers  


What is the use of OninitDialog ?

11 Answers   HCL, Nagarro,


Hi can anyone explain about the synchronization objects types and where we are using in the code.

1 Answers  


What is model and modeless dialog box ? Give some examples?

2 Answers   Mphasis,


Categories