What is the base class for MFC Framework ?

Answers were Sorted based on User's Feedback



What is the base class for MFC Framework ? ..

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

What is the base class for MFC Framework ? ..

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

What is the base class for MFC Framework ? ..

Answer / jones

CObject

Is This Answer Correct ?    15 Yes 2 No

What is the base class for MFC Framework ? ..

Answer / ctharam

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

Post New Answer

More MFC Interview Questions

1)set the Title for The File DialogBox, in MFC?

1 Answers  


What view class enables you to use an edit control as a view?

1 Answers  


How to convert the content of buffer into lower case character.

3 Answers   E Logic,


What is the base class for MFC Framework ?

2 Answers   Mphasis,


what is the use of CWinApp class?

3 Answers   Mphasis,






i have created runtime menu -- ( admistrator ->managepackage,manage module). but now i want to open a dialog when i select manage package and any other diaolg when selecting manage module ( whole selection is at run time only ) . Please HELP .its urgently required

3 Answers   Patni,


how many types of messages are their

4 Answers   E Logic, TCS,


What types of threads are supported by MFC framework?

2 Answers  


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.

3 Answers   ABC, HCL, Infosys,


What function is used to retrieve the currently selected index in a list box?

2 Answers  


Does the application have more than one object? If no, then what is the reason?

5 Answers  


What is the initial function to be called in MFC and what it will do

11 Answers   Infosys,


Categories