I need to inherit a form in a VBA project to use as a basis for other forms.
For example, a form called " Table " contains a list of two columns and buttons for ' Edit ', ' Include ' and ' Delete ' items; and whenever you make use of tables in the project this form should serve as a basis, but you can do implementations in each case:
StateTable : This will contain the Sigla of each state and its Description , based on the Table form without changes.
TableTaxAttribute : This will contain the Sigla of the state, its respective Description , which is an implementation on the original Table form), the Neighborhood (a simple description), and the Value also the Table form as the basis but with two new columns that should be created in addition to the two existing columns in the original (total of four columns for the data).
The idea is to be able to make changes to the Table form that would be assumed by the forms that are based on it, for example, including a ' Help ' button that will be common to all and assumed automatically without having to include this form button form.
Can you do it?