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
om: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tobias Holm Sent: Tuesday, December 11, 2007 9:41 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] COM registration problems Hi all, Im having serious problems with a registration of a com-dll. When I install it manually wit

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

[WiX-users] COM registration problems

2007-12-11 Thread Tobias Holm
Hi all, Im having serious problems with a registration of a com-dll. When I install it manually with regsvr32, everything works fine. To install it with wix I do the following: 1. Create a wix file with a component-element containing a file-element pointing to my my dll. 2.