add-in

What ClearCase plugin to use with Visual Studio 2008 SP1

丶灬走出姿态 提交于 2019-12-04 09:29:31
At work I have to use ClearCase v7.0.1.2 and ClearQuest v7.0.1.0 with Visual Studio 2008 SP1. Am running on a Windows XP SP2 box. I've done some searching but not found an official installer yet, can anyone advise (provide a link to) on the best plugin/addin to install for Visual Studio 2008 integration? Thanks The official instructions are in this IBM page CC-CQ-VS2008.zip (32 bits) CC-CQ-VS2008.zip (64 bits) Process: Download the appropriate package from the FTP link below to your ClearCase, CCRC or ClearQuest host. Decompress the archive to a temp location. Follow the instructions

Are there add-on libraries or tools available for ASP.NET MVC development?

浪子不回头ぞ 提交于 2019-12-04 08:11:58
问题 My first experience with ASP.NET MVC and the Entity Framework has raised my interest in this framework and I would like to implement some basic applications, covering the basic requirements of real-world web applications. So far the support given by VS 2008 is already impressive. For some areas however, it might be a time saver to use existing add-ons or libraries of all kind. Are there already commercial or open solutions which I should take a look at? 回答1: Some of them: S#arp architecture

Vertical lines for things like “if statements” in Visual Studio 2008?

时光毁灭记忆、已成空白 提交于 2019-12-04 08:05:32
Is there an add-on or setting that can add vertical lines that link things like "if statements" in Visual Studio 2008? Thanks CodeRush from DevExpress: http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/navigation.xml (See the "Structural Highlighting" section) 来源: https://stackoverflow.com/questions/2269756/vertical-lines-for-things-like-if-statements-in-visual-studio-2008

Is it possible to store hidden metadata information that is tied to a specific Table or Cell within a Word document?

◇◆丶佛笑我妖孽 提交于 2019-12-04 08:03:13
I am trying to store metadata (basically a unique id) along with each cell of a table in a Word document. Currently, for the add-in I'm developing, I am querying the database, and building a table inside the Word document using the data that is retrieved. I want to be able to save any of the user's edits to the document, and persist it back to the database. My initial thought was to store a unique id along with each cell in the table so that I would be able to tell which records to update. I would also like to store some sort of "isChanged" flag within each cell so that I could tell which

Creating a (ClickOnce) setup for VSTO Outlook Add-in

半世苍凉 提交于 2019-12-04 07:35:53
So I created an Outlook Add-in and used the click-once setup to deploy it. The setup runs fine when the user is administrator, but otherwise: no go. Running the setup with "run as..." and logging in as admin works, but than the add-in is installed under the admin, not the current user. The addin doesn't show up in outlook. I tried following this guide: http://blogs.msdn.com/mshneer/archive/2008/04/24/deploying-your-vsto-add-in-to-all-users-part-iii.aspx But I get stuck at part I: http://blogs.msdn.com/mshneer/archive/2007/09/04/deploying-your-vsto-add-in-to-all-users-part-i.aspx I follow the

How to find the Office AddIn Host it is a Word application or Excel using office.js?

Deadly 提交于 2019-12-04 06:52:31
I am creating a office AddIn which works in both excel and word applications and based on host if it is a word or excel host i want to execute different logic. I am using office.js to create office Addin. for example :- let say type="Excel" // after some logic executed if(type=="Excel") { //run code for excel applications } else { //run code for word applications } I have tried to use the bellow:- if (Office.context.requirements.isSetSupported('ExcelApi', '1.1')) { alert("yes it is excel"); } but it is not working when i run it in excel. I have sent the host in manifest file also <Hosts> <Host

Developing MS Word add-in

最后都变了- 提交于 2019-12-04 06:23:20
Anyone knows of a good tool for developing add-ins for Word in .net? Hopefully something that supports both office 2003 and 2007. Thanks. There are lots of options for development tools for Office. The most obvious one is of course Office itself. It has rich support for macros and VBA. You could also use SharePoint to extend document sharing and management functionality. But if your add-in is more complex than can be handled inside of Office, I suggest you use Visual Studio 2008 or the Tools For Office add-on for Visual Studio 2005. One thing to keep in mind is that Office is mostly a

“preprocess current file” addin for Visual Studio? (C++ )

大城市里の小女人 提交于 2019-12-04 06:20:54
I realize that Visual Studio has the "/P" option to generate preprocessed files, but it's extremely inconvenient. I'm looking for an addin that allows you to right-click on a file and select "view preprocessed" - or any similar solution that would basically preprocess the currently-open file (with the appropriate options from the current configuration) and show me the output, with no extra hassle. Does such a thing exist? There's no really elegant way of doing this using the External Tools menu, but here's a solution that will work: Create a new configuration for your project. Call it

Wait Cursor in VSTO word add-in application

可紊 提交于 2019-12-04 06:13:56
问题 I am creating a VSTO word add in. i'm starting a long elaboration from ThisAddin and i would like to change the cursor to WaitCursor, so if I go to Globals.ThisAddIn.Application, there is no cursor property and i've tried with Cursor.Current = Cursors.WaitCursor; when starting the elaboration, and Cursor.Current = Cursors.Default; at the end of the elaboration, but doesn't work, the cursor doesn't change. Any ideas on how to do this? 回答1: private static void SetCursorToWaiting() { Microsoft

What add-in/workbench framework is the best .NET alternative to Eclipse RCP?

独自空忆成欢 提交于 2019-12-04 05:35:24
I'm looking for a plugin-based application framework that is comparable to the Eclipse Plugin Framework, which to my simple mind consists of: a core plugin management framework (Equinox / OSGI), which provides the ability to declare extension endpoints and then discover and load plugins that service those endpoints. (this is different than Dependency Injection, but admittedly the difference is subtle - configuration is highly de-centralized, there are versioning concerns, it might involve an online plugin repository, and most importantly to me, it should be easy for the user to add plugins