how to use a common module
I have several VB programs that all have the same module in them. Is there a way I can make this module setup in some location where it can be used by all programs without having to place a copy of that module in all programs?
[226 byte] By [
AM003295] at [2007-11-11 10:05:49]

# 1 Re: how to use a common module
You can place the module anywhere you wish but you will need to add it to every project where it is used (Project...Add Module...Existing tab).
# 2 Re: how to use a common module
If all those programmes will work together , to have performance u can put it in a shared dll and refer to it in all your programmes , this way is better , but if u only don't want a copy of the module in all your applications then pclement's answer is sufficent .
Amahdy at 2007-11-11 17:24:12 >
