add-in

Syntax highlighter with selective attribute highlight - VS Addin

十年热恋 提交于 2019-12-11 06:55:31
问题 Is there any VS Adding for highlighting particular code block or attribute from whole code ? Thanks, Piyush 回答1: Yes, there is a thing which can help you - Visual Assist X addIn from http://www.wholetomato.com/. It has many features, including highlighting a symbol under cursor (if I understand your question correctly): 来源: https://stackoverflow.com/questions/2668071/syntax-highlighter-with-selective-attribute-highlight-vs-addin

How do you add add-ins to Access 2007?

给你一囗甜甜゛ 提交于 2019-12-11 06:07:46
问题 I have Access 2007 and I downloaded the Developer tools and installed them. At the same time I also installed Access Runtime. The Developer tools were fine and working for a while. One day, I had created an ACCDE file for which I wanted to package up as an application. Once I had made the file I went to open the Developer tools but the icon wasn't in the menu. I thought something had gone wrong so I uninstalled the tools and reinstalled them a few times but the icon didn't come back. I did

How to create Excel 2003 UDF with a C# Excel add-in using VSTO 2005 SE

大憨熊 提交于 2019-12-11 04:16:35
问题 I saw an article on creating Excel UDFs in VSTO managed code, using VBA: http://blogs.msdn.com/pstubbs/archive/2004/12/31/344964.aspx. However I want to get this working in a C# Excel add-in using VSTO 2005 SE, can any one help? I tried the technique Romain pointed out but when trying to load Excel I get the following exception: The customization assembly could not be found or could not be loaded. You can still edit and save the document..... Details: Type mismatch. (Exception from HRESULT:

C# excel addin - Accessing Controls

℡╲_俬逩灬. 提交于 2019-12-11 04:01:51
问题 I am working on an addin for excel 2010 using C#. I have an existing worksheet that has some controls in it, namely a ComboBox. I am trying to write some code that will place a certain value in the combo box's text property, but I am having a hard time getting access to the control to do so. The combo box is named 'ComboBox1' but if I try something like... var combo = Controls["ComboBox1"]; I get an ArgumentOutOfRangeException. Exploratory approaches to finding out what I am supposed to be

how to develop an add-in for visio

无人久伴 提交于 2019-12-11 03:38:53
问题 I want to create an add-in to visio so that I can draw BPMN diagrams (Business Process Modeling Notation). A similar work is available here: http://www.interfacing.com/free-visio-bpmn-modeler. But I want to create my own icons(notations) and make it domain specific. Please help me? How can I do this? What languages do I have to use? 回答1: You can develop add-ins for Visio using the Visio SDK. There are several versions, of which the 2010 SDK is the most recent. It contains samples written in C

Get Safe sender list in Outlook 2007 C# Add in

亡梦爱人 提交于 2019-12-11 02:27:54
问题 I have created an Outlook 2007 add-in in C#.NET 4.0. I want to read the safe sender list in my C# code. if (oBoxItem is Outlook.MailItem) { Outlook.MailItem miEmail = (Outlook.MailItem)oBoxItem; OlDefaultFolders f = Outlook.OlDefaultFolders.olFolderContacts; if (miEmail != null) { string body = miEmail.Body; double score = spamFilterObject.CalculateSpamScore(body); if (score <= 0.9) { miEmail.Move(mfJunkEmail); } } } So, the above code moves all email to spam, even though they are present in

Visual Studio and add-in unloading

你离开我真会死。 提交于 2019-12-11 01:07:44
问题 When I remove an add-in from Visual Studio's add-in menu, it doesn't get unloaded from memory. Does anyone know if I can write some code for my add-in (in C#) that would force this unloading. Is this even possible, or do I have to restart VS? 回答1: If your DLL is written in managed code there is no way to force it to be unloaded as a Visual Studio Add-In. The CLR does not support such a mechanism. The only way to force a DLL to be unloaded from a process is to tear down all AppDomains which

Making vsto add-in installable

雨燕双飞 提交于 2019-12-10 22:08:35
问题 I´ve created several VSTO add-ins for Outlook/Word/Excel/PowerPoint. When i build them & then start the accociated program, the add-ins are installed and work wonderful. When I try to install the DLL manually, in "Options > Add-Ins > COM-Add-Ins:Go to... > Add..." and then select the DLL, the program tells me, that it is not a valid Add-In. What is the problem here? Visual Studio 2010 can install them automatically. Can someone help me? Thanks! 回答1: A .net VSTO addin DLL is not a normal COM

Xamarin Studio 5 Unity Add-in Repository

…衆ロ難τιáo~ 提交于 2019-12-10 21:12:43
问题 I was trying to get Xamarin Studio 5 setup on OS X since it's a much better IDE than the one Unity ships with and I successfully got it working as an editor with Unity. However, I have read that it is possible to get the debugger working with it. Apparently in Xamarin Studio 4, there was an add-in in the alpha channel (from here http://www.cliffordroche.ca/monodevelop-4-xamarin-studio-debugging-in-unity/ and other sources) and there was a Unity section in the Gallery tab of the add-in manager

How to create a group of contact folders in outlook via c#

纵然是瞬间 提交于 2019-12-10 18:39:07
问题 I've been searching for a while, how to create a Contact Group in Outlook view of the Address book. In this case I don't mean a contact group to send an email to a lot of people ( i.e. not a mailing list ). It's only the view of the Address book within Outlook. A group can contain a number of Contact Folders . Does anybody have an idea or some information to solve this problem via c#? 回答1: You need to leverage the Contacts NavigationModule ( ContactsModule ) via Explorer.NavigationPane to