What is the base class for MFC Framework ?
Answers were Sorted based on User's Feedback
Answer / nkotesh
CObject is the base class for Microsoft Foundation Classes.
It's used to support Serialization, Runtime Class
Information and Object diagonstics
Is This Answer Correct ? | 22 Yes | 1 No |
Answer / john samuel
CObject is the principal base class for the Microsoft
Foundation Class Library. It serves as the root not only for
library classes such as CFile and CObList, but also for the
classes that you write. CObject provides basic services,
including
Serialization support
Run-time class information
Object diagnostic output
Compatibility with collection classes
Is This Answer Correct ? | 18 Yes | 2 No |
CObject is the root base class for most of the Microsoft Foundation Class Library (MFC).
The CObject class contains many useful features that
1) Serialization
2) Debugging
3) Dynamically create Objects
4) Compatibility with Collection Classes
5) Derive your class from CObject
Use the normal syntax to derive CTharam class from CObject
class CTharam : public CObject
{
// add CTharam-specific members and functions...
}
Is This Answer Correct ? | 1 Yes | 0 No |
How can we create thread in MFC framework?
Tell us something about MFC?
Does the application have more than one object? If no, then what is the reason?
how can u change button shape at run time
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
1)How to create ToolTip in MFC?
What types of threads are supported by MFC framework?
Hi can anyone explain about the synchronization objects types and where we are using in the code.
what is the use of CWinApp class?
Explain Doc/View architecture
1)how to Display the File Dialog Box, in MFC ?
General purpose classes in MFC