Contents tagged with Visual Studio

  • Outlook 2003 Add-in with Visual Studio 2005?

    Thinking of building an add-in for Outlook 2003 with Visual Studio 2005? Don't do it. Really, don't do it. What? Ok, if you must...

    I've just spend the last three days building an add-in and installing on on a single PC. This totaled about 3 hours of development time and the rest was getting the darn thing to load! Honestly, it was the single most frustrating thing I've ever encountered in years.

    The problem was that the setup program that Visual Studio 2005 automatically generates when you create an add-in project doesn't include everything you need.

    Here is how I fixed the problem:

    Before you can load your add-in you need to make sure the following is installed:

    After that you'll need to "fully trust" your assemblies. This can only be done with signed assemblies. I remember being a pain with VS 2003 but turns out is a breeze with VS 2005. Just open up the Properties for the project and select the Signing tab. From there is was fairly self explanatory.

    Now comes the part that gave me problems. After you have everything installed (including your nice newly signed assemblies) you need to give permission to those assemblies. This is done using a tool called CASPOL.EXE. Here is the command line for registering your file:

    caspol -u -ag All_Code -url "<full path to your file>" FullTrust -n "<assembly name>"

    If you have more than one file (or the above didn't work) you can also do this for a directory.

    caspol -u -ag All_Code -url "<directory path>\*" FullTrust

    I hope this helps save someone from the pain I experienced over the last few days. Hopefully this will get easier with the next release of Visual Studio...

    Updated to reference Outlook 2003. I wasn't clear about that in the original post.

  • VoiceXML with Visual Studio

    Every so often I'm surprised by the incredible flexibility built into Visual Studio 2005.

    I've been writing a lot of VoiceXML lately and I was really missing the intellisense that I've become so used to. On a whim I tried opening a VoiceXML document in Visual Studio and much to my surprise it worked!

    It turns out that Visual Studio is capable of understanding the syntax of a document based on it's DOCTYPE. In my case it saw <!DOCTYPE vxml PUBLIC "-//W3C//DTD VOICEXML 2.1//EN" "http://www.w3.org/TR/voicexml21/vxml.dtd"> and was able to automatically give me basic intellisense and syntax checking for VoiceXML version 2.1.

    As an example, create a new XML document and insert the following:

    <?xml version="1.0" encoding="utf-8" ?>

    <!DOCTYPE vxml PUBLIC "-//W3C//DTD VOICEXML 2.1//EN" "http://www.w3.org/TR/voicexml21/vxml.dtd">

    <vxml version="2.1">
    </vxml>

    You'll notice that the last element (</vxml>) gives you a warning. Hovering over it tells you not only that your missing an element but what the valid elements might be!

    This is all very cool if you ask me...

  • Visual Studio 2005 SDK - August 2006

    I while back I notices that there was going to be an August release of the VS2005 SDK. There was a a nice blurb on the Microsoft website about it

    The August 2006 v3 RTM is the next milestone in the VS 2005 SDK. This RTM release contains updated VS Integration sample and documentation content, including updates to the Team System SDK bits to make them more usable ( including whitepapers in the Doc-set, exploding all the sample zips so the files are all installed ), the IronPython end-end integration sample with Web Projects support for both web site and web application projects, updated wizards ( using the new Editor reference code from v2 ) new and Powertoys including the Extensibility Explorer in-memory hierarchy sample that browses installed Packages, Services, ToolWindows, Editors, and Project Systems..

    But so far the link for this version has remained dead. I'm not sure if this is an oversight or not.

    Thanks to Gabriel Lozano-Morán however I was able to download it anyway. Turns out that while the link isn't working, the file is. You get get instructions on download it from here.