Is there a way to have a module Include another Module?
Sort of like the C/C++ way of including things....
ie (#include)....
Printable View
Is there a way to have a module Include another Module?
Sort of like the C/C++ way of including things....
ie (#include)....
hmm well I think in .NET you just add the dll files as references. If you already have the module in your project, then you can use the Imports statement to make it easier to access...
for example you can add this
Imports MyProjectNameSpace.OtherNamespaces.YourModule
you can probably do just this too:D
Imports myModuleName