I have a situation where I have several VB.NET Modules in the same Logical-Module of a large application.
I would like the update function of each module to be publ
Yes, it is possible, if you are willing to wrap the module within a namespace of the same name as the module:
Namespace ModuleName Module ModuleName ... End Module End Namespace