M MrJim Jun 5, 2006 #1 How should variables be declared so that those in the base form can be changed in a form 'inherited' from it?
How should variables be declared so that those in the base form can be changed in a form 'inherited' from it?
C Cor Ligthert [MVP] Jun 5, 2006 #2 Jim, Normally you have to do nothing extra. Moreover, you can not get rid of them. Cor
M Michael D. Ober Jun 6, 2006 #3 Declare them public or protected. Public will be available outside the class while protected will be available only to derived classes. Mike.
Declare them public or protected. Public will be available outside the class while protected will be available only to derived classes. Mike.