I have a BHO which works under VisualStudio. I've installed it on another machine, and it's listed until Add-ons. It's pulled some manifest information from the DLL, so I know it's loaded, but SetSite isn't firing. I imagine this is a common question. What's the common answer?
wrote in message news:97cc1f7e-3ca9-45fc-94bf-d96993af61c3@m44g2000hsc.googlegroups.com > I have a BHO which works under VisualStudio. I've installed it on > another machine, and it's listed until Add-ons. It's pulled some > manifest information from the DLL, so I know it's loaded, but SetSite > isn't firing. Use Dependency Walker (www.dependencywalker.com) to check that your DLL isn't missing any dependencies on that machine. -- With best wishes, Igor Tandetnik With sufficient thrust, pigs fly just fine. However, this is not necessarily a good idea. It is hard to be sure where they are going to land, and it could be dangerous sitting under them as they fly overhead. -- RFC 1925
On 2 Aug, 20:36, "givemeaplacet...@googlemail.com" wrote: > I have a BHO which works under VisualStudio. I've installed it on > another machine, and it's listed until Add-ons. It's pulled some > manifest information from the DLL, so I know it's loaded, but SetSite > isn't firing. > > I imagine this is a common question. What's the common answer? Well, that was easy. I had created an install project but not added the ATL merge module.