add-in

How to set keytip on a ribbon?

◇◆丶佛笑我妖孽 提交于 2019-12-01 01:56:29
问题 I set the value of my keytip attribute for a split button to be " CKS " but when I execute the add-on in Outlook 2010, I get the hint that it's accessible using " Y7 ". I'm guessing it's some default throw-in and an arbitrary number. How do I force my choice of character combination to be the valid one on the ribbon? 回答1: You should be able to use your own shortcuts by using the keytip attribute in the customUI XML for the ribbon, but sometimes the Office programs decide to change it to Y1 ,

Create Registry in both Wow6432Node and normal hive

本秂侑毒 提交于 2019-12-01 00:33:13
So I created an MSI for Outlook Addin using Visual Sudio 2010 adding registry key as: and ran it and it puts the registry keys in the Wow6432Node although both Office and Windows is x64. I run windows 7 and Office 2010 x64. Then I exported myAddin registry hive and edited it so it pointed to HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlook\Addins . Opened Outlook and guess what....the addin shows up. Next question, how do I add the registry keys to both normal and Wow6432Node hive in Visual Studio? This is a followup form this question: Outlook COM addin installed but not loading in

convert an Excel 2010 addin to a 2007 addin (both VSTO)

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-30 23:23:51
问题 I am currently working on an Excel 2010 add-in which formerly was an Excel 2007 add-in. Somewhere in the process of switching computers, the add-in was converted i think. Some of my customers stated that the add-in wasn't working on Excel 2007 anymore so I tried to debug it in a VirtualBox with Excel 2007 and Visual Studio 2010 installed. Now I get the Error Message: You cannot debug or run this project, because the required version of the Microsft Office application is not installed. I

If I write an add-in for office 2007 will it work for 2010, 2013?

女生的网名这么多〃 提交于 2019-11-30 22:29:41
问题 I am currently in the process of re-writing some VBA macros that were written for office 2003. I was wondering if I wrote a C# add-in for 2007, if it would work for 2010 or maybe even 2013. Or if I wrote them for 2010 if they would work for 2007 and 2013 as well. I currently have access to 2007 but I could get access to 2010 if need be, no 2013 yet. So, basically, how much does the version of office affect the plugins? 回答1: If you use Visual Studio Tools for Office 2010 (VSTO 4.0) then it

How can I GZip compress a file from Excel VBA using code in an .xla file only?

自古美人都是妖i 提交于 2019-11-30 22:07:37
I need to be able to GZip compress a file in an Excel VBA function. Specifically I need to be able to use the 'deflate' algorithm. Is there a way to do this without having to exec a command line application? With no dependency on external tools the code will be more robust. Ideally the code would make use of pre-installed VBA or COM library functions - I don't want to have to implement this logic myself or install DLLs etc. If possible, I want installation of the function to be as simple as adding a .xla to the available Excel Add-Ins. No DLLs, EXEs, registry entries etc. required. Edit Can I

Is it possible to work with Qt4 projects in Visual Studio 2012 using add-ins?

点点圈 提交于 2019-11-30 21:58:56
I've found that Qt VS addin 1.1.x worked with Visual Studios including 2010. Qt VS addin 1.2.x does not support Qt4 in VS 2012. Are there any forks of this addin which can cope with Qt4 in VS 2012? Yes it is possible with the VS addin 1.2.2. I use this addin version and Qt 4.8.1 in Visual Studio 2012 together. The addin has limitations for Qt4, but it does the whole moc and ui stuff for you. The limitations are: you must specify the Qt4 include directories and lib paths self (not clickable) you have no Qt 4 file templates (but still works, after changing the include directives of the Qt4

Unknown Publisher still appears on correctly code-signed VSTO addin built with VS2010

江枫思渺然 提交于 2019-11-30 18:25:20
I have a OneClick Deployed VSTO Addin that I have signed with a up-to-date Verisign code-signing certificate (PFX). I have verified that I am signing correctly with Verisign support on the phone – they concur. I am building with VS2010. Nonetheless, the Addin shows “unknown publisher” when I try to install. Why? How can I replace “Unknown Publisher” with the name of the Publisher on the PFX certificate? This is what I have done to try to solve the problem to date: Found this question about “Unknown Publisher” issue on Addins. The accepted answer to that question discusses using mage.exe to

How can I GZip compress a file from Excel VBA using code in an .xla file only?

给你一囗甜甜゛ 提交于 2019-11-30 18:17:28
问题 I need to be able to GZip compress a file in an Excel VBA function. Specifically I need to be able to use the 'deflate' algorithm. Is there a way to do this without having to exec a command line application? With no dependency on external tools the code will be more robust. Ideally the code would make use of pre-installed VBA or COM library functions - I don't want to have to implement this logic myself or install DLLs etc. If possible, I want installation of the function to be as simple as

Create Registry in both Wow6432Node and normal hive

与世无争的帅哥 提交于 2019-11-30 18:06:04
问题 So I created an MSI for Outlook Addin using Visual Sudio 2010 adding registry key as: and ran it and it puts the registry keys in the Wow6432Node although both Office and Windows is x64. I run windows 7 and Office 2010 x64. Then I exported myAddin registry hive and edited it so it pointed to HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlook\Addins . Opened Outlook and guess what....the addin shows up. Next question, how do I add the registry keys to both normal and Wow6432Node hive in

Is it possible to work with Qt4 projects in Visual Studio 2012 using add-ins?

给你一囗甜甜゛ 提交于 2019-11-30 17:14:30
问题 I've found that Qt VS addin 1.1.x worked with Visual Studios including 2010. Qt VS addin 1.2.x does not support Qt4 in VS 2012. Are there any forks of this addin which can cope with Qt4 in VS 2012? 回答1: Yes it is possible with the VS addin 1.2.2. I use this addin version and Qt 4.8.1 in Visual Studio 2012 together. The addin has limitations for Qt4, but it does the whole moc and ui stuff for you. The limitations are: you must specify the Qt4 include directories and lib paths self (not