Re: [WiX-users] COM registration problems

2007-12-12 Thread Wilson, Phil
esday, December 12, 2007 3:05 AM To: 'Szentpali Janos'; [EMAIL PROTECTED]; wix-users@lists.sourceforge.net; Wilson, Phil Subject: RE: [WiX-users] COM registration problems Thanks for your attention! The problem was that the typelib´s of some comvisible assemblies were not registered. I

Re: [WiX-users] COM registration problems

2007-12-12 Thread Ryan O'Neill
That happened to me too, but I shut up because I thought there must be a better way and I was about to be educated. :) Tobias Holm wrote: > Thanks for your attention! > > The problem was that the typelib´s of some comvisible assemblies were not > registered. I thought that tallow would extract th

Re: [WiX-users] COM registration problems

2007-12-12 Thread Tobias Holm
Thanks for your attention! The problem was that the typelib´s of some comvisible assemblies were not registered. I thought that tallow would extract this information as well when I ran tallow -c on the dlls. I solved it by: 1 running regasm on my comvisible assemblies. 2 manually extracting the t

Re: [WiX-users] COM registration problems

2007-12-11 Thread Wilson, Phil
That means it can't find the type library. What do you have in the WiX (or the MSI) for HKCR\Typelib\{typelib guid}\\win32 ? It needs to be a path to where the COM Dll was installed. I think I'd expect the WiX to have [#filekey] for the location. Phil Wilson -- From: [EMAIL

Re: [WiX-users] COM registration problems

2007-12-11 Thread Szentpali Janos
I don't think the ("TYPE_E_CANTLOADLIBRARY ($80029C4A)") error comes from the way it is installed. It is more likely a dependency problem: another COM component that your library is using (maybe a type library that it implements) might be missing (or is in the path in the context of the user that r