Is VBA a good example of...

  • Thread starter Thread starter Patrick
  • Start date Start date
P

Patrick

HI!!

Just wondering if VBA is considered to be a
Object Oriented Programming(OOP) language,like C++ for
example.

If so could you spare an example or 2.

And could you explain what exactly is suppose to be the
concept behind OOP. I've seen-it used by C++ but don't
really know what the idea is behind-it...

Thanks for any help and explanation you can provide-me
with!
PAtrick
 
No, VBA is not considered to be a "full" object orientated languages, but it
does allow the creation of class objects. Class objects have most of the
aspects of a OO system, but miss a few things like "inheritance" that
true/full OOP systems have.

They are extremely useful to solve some problems.

You can read my article about creating and using class objects in ms-access
at:

http://www.attcanada.net/~kallal.msn/Articles/WhyClass.html
 
Back
Top