Accessing inherited variables

  • Thread starter Thread starter MrJim
  • Start date Start date
M

MrJim

How should variables be declared so that those in the base form can be
changed in a form 'inherited' from it?
 
Jim,

Normally you have to do nothing extra.

Moreover, you can not get rid of them.

Cor
 
Declare them public or protected. Public will be available outside the
class while protected will be available only to derived classes.

Mike.
 
Back
Top