inheritance

  • Thread starter Thread starter k2sarah
  • Start date Start date
K

k2sarah

does access class modules support inheritance? i have a number of difference
trading strategies which i would like to use inheritance? if so, can you
direct me to any basic samples?
 
Unfortunately, the inheritance in VB6 and VBA is very limited. It only
supports implementation inheritance. For more on that, look up the
"Implements" keyword in the help file. (Easiest way is probably to type
Implements at the top of a Class module and hit F1.)



Rob
 
Back
Top