Explain about MDI and CMultiDocTemplate ?
Answers were Sorted based on User's Feedback
Answer / mukund
MDI applications are designed using the doc-view
architectures in which there could be many views associated
with a single document object and an application can open
multiple docuements at the same time for eg:WORD.
In MDI terms, your main window is called the Frame, this is
probably the only window you would have in a SDI (Single
Document Interface) program. In MDI there is an additional
window, called the MDI Client Window which is a child of
your Frame window. CMultiDocTemplate is the document
template class used to create MDI applications..The
document template also stores a resource ID that the
framework uses to load menus, accelerators, and other
resources that shape the application's user interface.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / c.vidhya
To Established the relationship between CView and CDocument
with Cdoctemplate and CMultidoctemplate.Cdoctemplate for
SDI and CMultidoctemplate for MDI
| Is This Answer Correct ? | 3 Yes | 6 No |
What are the special requirements for dialog box resources used in a form view?
what message is sent to an application when the user presses the primary button?
19)how to set Back Ground Picture to a Dialog Box in MFC ?
Tell me about different kinds of synchranization objects ?
Hi All, i am new for VC++ SDK. i want to get the IP Address of all the External device connected with my local machine.please give the code Regards, Praveer
Given two processes, how can they share memory?
What is LPCTSTR? What does LP denote it?
How to handle RTTI in MFC ?
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.
Tell me the work of HTREDUCE and HTZOOM
Does the application have more than one object? If Yes, Briefly explain.
How to access document object from view ?