Moumita said:
I have made a COM Outlook Addin in VB 6.0 It works perfectly fine on
machines having Visaul studio but does not not run on other systems.What
could be the problem.I am already including the followinf type libraries
while packaging the project;
MSO9.dll
MSOOUTL9.dll
ASYCFILT.dll
COMCAT.dll
MSVBVM60.dll
OLEANT32.dll
OLEPRO32.dll
STDOLE32.tlb
VB6STKIT.dll
FYI, you do NOT want to redistribute MSO9.DLL or MSOOUTL9.DLL/OLB. These
files are part of Microsoft Office. This is a violation of the licensing
agreement (read: illegal) for you to distribute these files. These files
will already be on a user's system of they have Microsoft Office. Your
project does reference these, but the P&D Wizard (where I assume you got
this list) doesn't know they are part of office, so it blindly tells you to
redistribute them. You have to be careful about what it tells you.
While we're on the subject, the P&D Wizard is a piece of junk. Ask any
professional VB programmer will tell you that. You would be much better off
with something like Inno Setup (
www.innosetup.com). Its much more
professional and works a lot better!
-Tom