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 SDI and MDI

15 Answers   CMC, HCL, Siemens,


What function is called by a document class to notify views that the document has been changed?

2 Answers  


How many types of dialog box are their

10 Answers   Honeywell,


1.Get string1,string2,string3 1.add string1 and 2,string1 and 3. 2.replace vowels with T 3.count number of T. 4.remove T 5.COPY string1 to stringf. 6.restore string1. print the following 1.Number of T 2.StringF 3.string1+string2+string3 Use pointers and functions

1 Answers  


Types of DLL's

11 Answers   Invensys,






what is the meaning of constant FILE EXCEEDS LENGTH LIMIT while loading from ps file to vsam in the jcl?

0 Answers  


I can i set size of integer variable should be fixed for different operating systems(Ex i want integer size is 2bytes in OS)

2 Answers   Invensys,


Psychic Window Technique

2 Answers   E Logic, Wild Net,


how do u identify RTTI in vc++

4 Answers   Siemens,


Explain StretchBlt and BitBlt

1 Answers  


Explain about MDI and CMultiDocTemplate ?

2 Answers  


2.create for 10 batch: Employee_Number Employee_name Employee_Dateofjoining Employee_address Employee_salary 1.select the employee name who deriving more than 10 thousand salary and joined before august 08. use structure and pointers

0 Answers   TCS,


Categories