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 |
What is serialization ?which function is responsible for serializing data ?
how do u identify RTTI in vc++
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
How can update edit control data of an executing application from other application?
what is the use of AFX_MANAGE_STATE ?
What is stack size in win32 program?
What is the base class for MFC
is there any class which is not derived from Cobject
What is Multithreading
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
1)how to Display the File Dialog Box, in MFC ?
1)set the Title for The File DialogBox, in MFC?