what is the difference between SDI and MDI
Answers were Sorted based on User's Feedback
Answer / sailee jadhav
In the SDI(Single Document Interface)view,distinct windows of the visual basic IDE(Integrated development environment) exist independently
of each other.
MDI(Multiple Document Interface) view shows all the distinct windows of the visual basic IDE as member window within one large IDE window
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nisha munjal
SDI-Most applications in Windows 95 or later use a Single Document Interface. Each window of the application holds a single document, so if the user wants to open more documents with that application, he must open a new window. It's also the default mode when building an application with Visual Basic. An example of an SDI application is Windows Notepad.
MDI-Multiple Document Interfaces were more popular in versions of Windows prior to Windows 95, but they've become less common, outside of a few applications. With an MDI, each window within an application holds multiple documents, usually in sub-windows. Each time the user wants to open a new document, rather than opening a new window, the document opens within the existing window and shares it with all other open documents. An example of an MDI application is a tabbed Web browser like Firefox, where users have an option to open documents in multiple tabs within the same window.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / poonam dhaliwal
In MDI you can use multiple document interface form, a form that can contain multiple forms. Forms are added to the project selecting ADD form from Projet menu.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / besttest answer
SDI: ye mera dewana pan hai
MDI: programming banane wale kya tere dil me samayi kahe ko
programming banayi
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / ahun ahun ahun
SDI-dilli hai dil walo ki dilli dilli
MDI-Ye to bambai nagariya hai dekh babua
| Is This Answer Correct ? | 31 Yes | 119 No |
If application hangs while SendMessage is waiting for the result, how you handle it?
19)how to set Back Ground Picture to a Dialog Box in MFC ?
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,..... write code for this?
How to handle command line arguements from simple MFC application ?
Why not virtual functions to handle messages?
What is the base class for MFC
What is the use of CObject::Dump function ?
Differ GetMessage, PostMessage & PeakMessage?
What?s the difference between Modal and Modeless Dialog?
What is LPCTSTR? What does LP denote it?
What is the initial function to be called in MFC and what it will do
1)At run-time, you can change the icon by calling the LoadIcon() function?