Does VB Supports OOPS Concepts? Explain..

Showing Answers 1 - 5 of 5 Answers

Apurva

  • Aug 27th, 2005
 

Visual Basic is not supprt Inheritance and Data binding OOPS Concept 

  Was this answer useful?  Yes

suchi

  • Sep 11th, 2006
 

the answer must be elaborated and good

  Was this answer useful?  Yes

ompurohit

  • Oct 24th, 2007
 

Theoritically the oops support is not there but some tricky methods are there.

1. Create the function (Even for properties) in a class B
2. Use Impements keyword to implement each Function of B in Derived Classs D. With

3. Create a private instance m_B of base class B in derived Class D. In each implemented method just bypass/delegate it to base class object m_B. Like m_B.NEFunction();
4. To use it always take the base class object from derived class and do whatever u wish.


  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions