![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
Hello All,
We have created a shared addin using .NET for outlook. We have another setup project for office word created by other party using same shared addin and ..NET Framework. We need a common setup project which gives choice to select for word and outlook with check boxes. we have to installed both or any one depending on user selection. We are using window installer 3.0 to achieve this. can any one give more information on this , to how to get our requirement? Any url or some common problems solution is highly appriciated. Neetu |
#2
|
|||
|
|||
![]()
As a word of advice, Outlook addins don't like being shared addins with
other Office applications. I often combine Word, Excel and PPT addins into one shared addin project but I always make Outlook addins as completely separate projects. How you'd do that would depend on what installer package you're using and what methods of deployment. ClickOnce would be different than a setup project, for example, if you are using the VS installer. InstallShield or Wise or Wix would also be different. The best places to ask this sort of question is whatever forum is relevant to your installer choice. You might find that there's no way to do what you want unless you use a starter program to get the choices and then call one or both separate installation packages. That could possible be on a Web page, depending on your installation and deployment methods and software. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Neetu" wrote in message ... Hello All, We have created a shared addin using .NET for outlook. We have another setup project for office word created by other party using same shared addin and .NET Framework. We need a common setup project which gives choice to select for word and outlook with check boxes. we have to installed both or any one depending on user selection. We are using window installer 3.0 to achieve this. can any one give more information on this , to how to get our requirement? Any url or some common problems solution is highly appriciated. Neetu |
#3
|
|||
|
|||
![]()
Hello Ken
Thanks for reply and Information. As i Mentioned we have a Shared addin for outlook and we have dlls of shared addin for Word from third party. we are trying to create a single setup for our outlook shared addin and third party word shared dlls using visual studio setup project. I am using a insataller class to make registry entries for outlook and addin. I added third party dlls in setup project as file while output of outlook addin as project outlook. after installation outlook addin is working however word addin is not. We have GUID of third party word addin. I am making registry entry for word addin at HKEY_CURRENT_USER\Software\Microsoft\word\Addins Do I need to do more registry entries for Word addin ? "Ken Slovak - [MVP - Outlook]" wrote: As a word of advice, Outlook addins don't like being shared addins with other Office applications. I often combine Word, Excel and PPT addins into one shared addin project but I always make Outlook addins as completely separate projects. How you'd do that would depend on what installer package you're using and what methods of deployment. ClickOnce would be different than a setup project, for example, if you are using the VS installer. InstallShield or Wise or Wix would also be different. The best places to ask this sort of question is whatever forum is relevant to your installer choice. You might find that there's no way to do what you want unless you use a starter program to get the choices and then call one or both separate installation packages. That could possible be on a Web page, depending on your installation and deployment methods and software. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Neetu" wrote in message ... Hello All, We have created a shared addin using .NET for outlook. We have another setup project for office word created by other party using same shared addin and .NET Framework. We need a common setup project which gives choice to select for word and outlook with check boxes. we have to installed both or any one depending on user selection. We are using window installer 3.0 to achieve this. can any one give more information on this , to how to get our requirement? Any url or some common problems solution is highly appriciated. Neetu |
#4
|
|||
|
|||
![]()
The Word addin dll has to be registered of course, not only in \Addins, but
the CLSID's for he addin also need to be registered (usually somewhere in HKCR). -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Neetu" wrote in message ... Hello Ken Thanks for reply and Information. As i Mentioned we have a Shared addin for outlook and we have dlls of shared addin for Word from third party. we are trying to create a single setup for our outlook shared addin and third party word shared dlls using visual studio setup project. I am using a insataller class to make registry entries for outlook and addin. I added third party dlls in setup project as file while output of outlook addin as project outlook. after installation outlook addin is working however word addin is not. We have GUID of third party word addin. I am making registry entry for word addin at HKEY_CURRENT_USER\Software\Microsoft\word\Addins Do I need to do more registry entries for Word addin ? |
#5
|
|||
|
|||
![]()
Thanks for Reply Ken,
I am registering my third party addin dll of word as COM Object. and added a key In HKEY_LOCAL_MACHINE\Software\Microsoft\office\word\ addin for that connect class My LoadBehavior is 3 As soon as I open word application this number get changes to 2 Plz suggest me where all I have to make registry entry for third party word dll ? Neetu "Ken Slovak - [MVP - Outlook]" wrote: The Word addin dll has to be registered of course, not only in \Addins, but the CLSID's for he addin also need to be registered (usually somewhere in HKCR). -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Neetu" wrote in message ... Hello Ken Thanks for reply and Information. As i Mentioned we have a Shared addin for outlook and we have dlls of shared addin for Word from third party. we are trying to create a single setup for our outlook shared addin and third party word shared dlls using visual studio setup project. I am using a insataller class to make registry entries for outlook and addin. I added third party dlls in setup project as file while output of outlook addin as project outlook. after installation outlook addin is working however word addin is not. We have GUID of third party word addin. I am making registry entry for word addin at HKEY_CURRENT_USER\Software\Microsoft\word\Addins Do I need to do more registry entries for Word addin ? |
#6
|
|||
|
|||
![]()
What I mentioned is usually all you have to do. If more is required I'd ask
the people who wrote your Word addin how to get it running. They'd know that more than anyone else would. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "Neetu" wrote in message ... Thanks for Reply Ken, I am registering my third party addin dll of word as COM Object. and added a key In HKEY_LOCAL_MACHINE\Software\Microsoft\office\word\ addin for that connect class My LoadBehavior is 3 As soon as I open word application this number get changes to 2 Plz suggest me where all I have to make registry entry for third party word dll ? Neetu |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
One Setup project for outlook 2003 AND 2007 | Neetu | Add-ins for Outlook | 7 | February 23rd 09 02:31 PM |
Custom message in setup project | Nita Jadhav | Add-ins for Outlook | 1 | February 13th 09 03:07 PM |
outlook addin setup | Neetu | Add-ins for Outlook | 5 | May 7th 08 02:08 PM |
dependencies not showing up in visual studio setup project | [email protected] | Add-ins for Outlook | 1 | October 26th 07 03:08 PM |
MS Project 2003 Server AddIn | Dave | Add-ins for Outlook | 0 | May 18th 06 03:57 PM |