public subs across multiple projects

L

Lucas Karpiuk

i've got a procedure that i cannot seem to call from within another project
(both loaded via the Startup folder). it'll work if they're in the same
project, but different modules. aside from an instance of Option Private,
which i don't have, is there anything else that might cause this? (or is this
actually expected behaviour and i've just misunderstood the documentation...)

thanks!
 
J

Jezebel

Apart from the Call method, an alternative is to add to your project a
reference to the other project -- its public objects then become available
to your code.
 
Top