Hello all,
I have an app that uses a single class for each database table. Within the app, there are at least one module (some apps have more than one). The classes are used both within the module and outside the module - but always, the reference has to include the ModuleName. to create the property or New instance of the class similar to this:
Property Class As ModuleName.clsClassName
Class = New ModuleName.clsClassName
What I have noticed is that the dot (.) notation/intellisense does not always work - appearing to have something to do with some sort of scope within the IDE during design time. However compiled or run time works just fine.
My question is, does it matter where in the app that the class file itself resides - not where it is instantiated - only where it resides within the App/IDE???
I hope I have been at least semi-clear with this. I would appreciate your feedback!
Thank you,
Tim