how i can design a user interface in vc++ for getting
inputs from users



how i can design a user interface in vc++ for getting inputs from users..

Answer / d.v.rama krishna

While Creating the user interface all the functions should
be public, and all the fuctions are pure virtual functions.

Here is the example code

#define interface struct

interface <inter face name >
{
virtual int add(int x, int y) =0;
};

class A : public <<inter face name>>
{
public:
.
.

int add (int x, int y);
};

int A:: add(int x, int y)
{
return x+y;
}

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More VC++ AllOther Interview Questions

What function is used to trap all mouse messages?

1 Answers  


What are the two forms of the #include preprocessor directive?

1 Answers  


how i can design a user interface in vc++ for getting inputs from users

1 Answers   Path Finders, TCS,


Where can I find microsoft visual c++?

0 Answers  


How to Use mfc71d.dll not mfc71.dll ?

1 Answers  






How do you handle drag and drop in ole?

0 Answers  


How do I reinstall microsoft visual c++?

0 Answers  


Do you need microsoft visual c++?

0 Answers  


Do I need microsoft visual c++ on my computer?

0 Answers  


What is iunknown? Explain some of commonly used methods provided by iunknown.

0 Answers  


Is it ok to uninstall microsoft visual c++?

0 Answers  


What is dao in vc ++?

0 Answers  


Categories