Archiv für die Kategorie ‘Visual Studio’

Articles

Deploying your VSTO add-ins to All Users (Saurabh Bhatia) – Office Development with Visual Studio – Site Home – MSDN Blogs

In Office,Visual Studio,vsto on November 23, 2010 von murratore

When you want to deploy an Office Plugin programmed with Visual Studio Tools for Office then have a look at this Blog

http://blogs.msdn.com/b/vsto/archive/2010/03/08/deploying-your-vsto-add-ins-to-all-users-saurabh-bhatia.aspx

One important thing which was not said on other articles is that on a 64-Bit OS the Registry Path for the Allusers is somewhere different…

4) Installing on 64-bit Operating Systems

Unlike the HKCU registry hive, the HKLM registry hive for Office add-ins is redirected on a 64-bit Windows OS. So if you are trying to register an add-in with 32-bit version of Office running on a 64-bit OS, the add-ins registry will be under the WOW6432Node. The 32-bit Office running on 64-bit OS will always load the add-ins listed under this key.

e.g. HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\application name\Addins\add-in ID

A 64-bit version of Office 2010 on 64-bit OS will always load the add-ins under this key:

e.g. HKEY_LOCAL_MACHINE\Software\Microsoft\Office\application name\Addins\add-in ID

With the ability to directly register and load VSTO add-ins from the HKLM hive on Office 2010, you can easily deploy VSTO add-ins to all users of a machine and no longer need to follow the steps outlined in Misha’s blog

viaDeploying your VSTO add-ins to All Users (Saurabh Bhatia) – Office Development with Visual Studio – Site Home – MSDN Blogs.

Articles

Problems with Outlook VSTO

In Microsoft,Office,Visual Studio,vsto on August 27, 2010 von murratore

Had the problem that my Outlook Code for accessing the opened calenders in Outlook 2010 sent me a mysterious error message (registry / installation problem in outlook. Reinstallation necessary).

After posting this information in the OutlookCode Forum (really good, really experienced people). My first stop in problems.

http://outlookcode.com/threads.aspx?forumid=5&messageid=32109

The problem was that my Application reference was created newly

Microsoft.Office.Interop.Outlook.Application outlookApp = new Microsoft.Office.Interop.Outlook.Application();

After changing the code like below

Microsoft.Office.Interop.Outlook.Application outlookApp = Globals.ThisAddIn.Application;

The code went through without problems…. stupid error… :-(

Articles

Office 2010 – Deploying your VSTO add-ins to All Users

In Office,Visual Studio on Juli 16, 2010 von murratore

Beste und einzige funktionierende Anleitung welche ich gefunden habe zum Deployen von Office 2010 Addins. Mit Clickonce gehts viel einfacher aber so hat mans halt nicht im Griff wie mit einem MSI.

http://blogs.msdn.com/b/vsto/archive/2010/03/08/deploying-your-vsto-add-ins-to-all-users-saurabh-bhatia.aspx

Articles

Announcing the first Visual Studio Pro Power Tools! – bharry’s WebLog – Site Home – MSDN Blogs

In .Net,Visual Studio on Juni 8, 2010 von murratore

Collections of Addins for Visual Studio. Looks very interesting.

Announcing the first Visual Studio Pro Power Tools! – bharry’s WebLog – Site Home – MSDN Blogs.

Articles

TFS Integration Platform

In .Net,Community,Microsoft,TFS,Visual Studio on Juni 8, 2010 von murratore

http://tfsintegration.codeplex.com/

Wahrscheinlich hilfreich zum Migrieren von TFS 2008 auf TFS 2010.

The TFS Integration Platform is a project developed by the Team Foundation Server (TFS) product group and the Visual Studio ALM Rangers to facilitate the development of tools that integrate TFS with other systems. Currently, the scope of this project is to enable TFS to integrate with other version control and work-item/bug tracking systems, but the eventual goal of this project is to enable integration with a broader range of tools/systems (i.e. build). This platform enables the development of two major classifications of tools: tools that move data unidirectionally into TFS, and tools that synchronize data bidirectionally.

Source: http://blogs.msdn.com/b/bharry/archive/2010/06/07/tfs-integration-tools-beta-available.aspx

Articles

o-LIVE-r : Download: Neues kostenloses Training-Kit für Visual Studio 2010 und .NET Framework 4

In .Net,Microsoft,News,Sharepoint,Visual Studio on Januar 15, 2010 von murratore

Das aktualisierte Training-Kit für Visual Studio 2010 und .NET Framework 4 steht ab sofort kostenlos öffentlich zum Download bereit. Diese umfangreiche Ressourcensammlung enthält erweiterte und kommentierte Versionen der Trainingsinhalte von Microsoft für Partnerunternehmen, wie sie auch im Rahmen der Microsoft Trainings verwendet werden.

Das Visual Studio 2010 und .NET Framework 4 Training-Kit bietet alles, was Anwender, Journalisten, Trainer und Unternehmen benötigen, um sich in Visual Studio 2010 und das .NET Framework 4 einzuarbeiten. Es wurde auf die aktuelle Beta 2 abgestimmt und enthält 17 Präsentationen, 21 Demos und 26 Hands-On-Labs (Tutorien). Neu in der aktuellen Version sind außerdem spezifische Inhalte für Office, SharePoint und Application Lifecycle Management.

Quelle: o-LIVE-r : Download: Neues kostenloses Training-Kit für Visual Studio 2010 und .NET Framework 4.

Articles

101 LINQ Samples

In .Net,datenbanken,linq,Visual Studio on September 29, 2009 von murratore

Hier findet man eine Auflistung von 101 LINQ Query Beispielen. Für micht richtet sich die Auflistung vorallem an Programmierer mit Erfahrung in SQL.

http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx

Articles

Visual Studio auf Deutsch oder auf Englisch?

In Visual Studio on August 12, 2009 von murratore

Einen interessanten Artikel zur obigen Kontroverse gibts auf Heise Entwickler. Verfasst wurde der Artikel von Holger Schwichtenberg (der hat schon Vergleich zwischen WPF und WinForms gemacht).

http://www.heise.de/developer/Visual-Studio-auf-Deutsch-oder-auf-Englisch–/artikel/143299

Sein Fazit:

Der Autor ist kein Verächter der deutschen Sprache, sondern setzt sich aktiv gegen unnötige Anglizismen in der Fachsprache ein (zum Beispiel "Protokoll" statt "Log" und "heruntergeladen" statt – wie Windows es meint – "downgeloaded"). Bei der täglichen Entwicklungsarbeit verwendet er (wie die meisten seiner Kollegen) ausschließlich eine englische Visual-Studio-Version, weil er damit produktiver ist. Das ist auch sein Rat an jeden .NET-Entwickler in Deutschland, sofern er nur etwas der englischen Sprache mächtig ist. Die wenigen Steuerelemente, die sich nach der Sprache der Entwicklungsumgebung richten, kann man besser in den Griff bekommen als die holprigen Übersetzungen.

Articles

Word to TFS

In Office,TFS,Visual Studio on Juli 30, 2009 von murratore

Die Firma AIT ist Spezialist im Bereich TFS und hat eine Freeware veröffentlicht, mit welcher es möglich ist Requirements in Word zu schreiben und diese zu verbinden mti TFS Work Items.

Hier der Link:

http://www.aitag.com/word_to_tfs0.0.html?&no_cache=1

Eine gute Beschreibung resp. Anleitung findet man hier

http://www.aitag.com/word_to_tfs.0.html

Articles

Visual Studio Entwicklungstools für Blackberry

In Blackberry,Visual Studio on Juli 29, 2009 von murratore

RIM hat eine Entwicklungsunterstützung in Visual Studio für die Entwicklung von Online-Anwendungen angekündigt. Damit soll es möglich sein relativ einfach statische (für BB optmierte) Webseiten aber auch Rich Internet Applications (mit ASP.Net & Ajax) zu programmieren.

http://www.blackberry.com/developers/webvisualstudio

Quelle: http://dotnet.sys-con.com/node/1049968

Follow

Bekomme jeden neuen Artikel in deinen Posteingang.