Click here to Skip to main content
15,884,855 members
Articles / Desktop Programming / WPF

Visual Studio Tools for Office 2008 Ribbon Designer with XLINQ for Yahoo

Rate me:
Please Sign up or sign in to vote.
4.20/5 (6 votes)
5 Dec 2007CPOL6 min read 81.9K   1.7K   51  
See the new Ribbon Designer in Visual Studio 2008 allowing you to graphically create ribbons for your Office add-ins. Add images from the Yahoo Image Search API and analyse the content of your document
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Word = Microsoft.Office.Interop.Word;
using Office = Microsoft.Office.Core;
using System.Xml.Linq;
using System.IO;
using System.Net;


namespace WordAddIn1
{
    public class WinFormsUserControl : UserControl
    {
        public WinFormsUserControl()
        {

        }

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions