What is document-view architecture ? Give me one real time
example for SDI ?
Answers were Sorted based on User's Feedback
MFC applications wizards by default creates an application
skeleton with a document class and view class. This
achetecture separates the data management into these two
classes. The document manages the data of multipule views.
view displays the data and manages the user interaction.
Notepad is simple example for SDI application.
| Is This Answer Correct ? | 23 Yes | 2 No |
Answer / jianhua wang
This document-view architecture is the core of the
application framework and is loosely based on the
Model/View/Controller classes from the Smalltalk world. In
simple terms, the document-view architecture separates data
from the user’s view of the data. One obvious benefit is
multiple views of the same data.
| Is This Answer Correct ? | 13 Yes | 3 No |
Tell me about different kinds of synchranization objects ?
What is subclassing?
what is the component of CLR ?
What is LPCTSTR? What does LP denote it?
how u can move CDC pointer to one line in cview?
Explain StretchBlt and BitBlt
What is #progma and where it is used?
Why not virtual functions to handle messages?
How to convert the content of buffer into lower case character.
In VC++ How to transfer between one exe to another exe while running..
1)How to change the size of a button at run time ?
What is the difference between the ASSERT and VERIFY macros?