I am using the Table class in the designer, added to a panel (Add View, CustomView, Table)
I declare the class in Sub Globals():
Private TableX As Table
This causes a warning in the IDE:
View 'TableX' was added with the designer. You should not initialize it. (warning #20)
This is not actually causing any problems.
If I leave the declaration out I will get:
Undeclared variable 'tablex' is used before it was assigned any value.
How should this be done?
RBS
I declare the class in Sub Globals():
Private TableX As Table
This causes a warning in the IDE:
View 'TableX' was added with the designer. You should not initialize it. (warning #20)
This is not actually causing any problems.
If I leave the declaration out I will get:
Undeclared variable 'tablex' is used before it was assigned any value.
How should this be done?
RBS