Full Specifications What's new in version 11.0.9969 This version is the first release on CNET Download.com. General Publisher Publisher web site Release Date August 31, 2007 Date Added August 31, 2007 Version 11.0.9969 Category Category Subcategory Operating Systems Operating Systems Windows 2000/XP Additional Requirements Windows 2000/XP/2003 Server Download Information File Size 829.38KB File Name setup.exe Popularity Total Downloads 2,210 Downloads Last Week 5 Pricing License Model Free Limitations Not available Price Free.
Previous versions of Microsoft Office applications were able to access Web services using the Microsoft Office Web Services Toolkit. However, the Web Services Toolkit is not a Microsoft supported product. Microsoft Visual Studio 2008 Tools for Office provides support for creating Office 2007 application managed code extensions that allow developers access to the full power of the Microsoft.NET framework, including the ability to easily make calls to Web services. Length: 07:32 Size: 8.79 MB Type: WMV file. This Visual How-to article illustrates calling the Live Search Web service from an Excel 2007 workbook solution created with Visual Studio 2008. The workbook extension provides a Fluent UI customization that allows users to provide a search term and perform a search of the Live Search business phone book. Search results are inserted into the current worksheet.
To illustrate how to consume Web services in Excel 2007, this section walks through the following steps:. Creating an Excel 2007 workbook solution in Visual Studio 2008. Adding a reference to the Live Search Web service.
Adding code that calls the Web service and inserts search results into the worksheet. Adding an Office Fluent UI customization. Creating an Excel 2007 Workbook Solution in Visual Studio 2008. Start Microsoft Visual Studio 2008. From the Project menu, click File, then click New. In the New Project dialog box, click Visual Basic Office 2007 or Visual C# Office 2007 in the Project types pane.
Can't install the Microsoft Office Webservices Toolkit for Microsoft Office 2003 because you are using Office 2007? This is a problem I came across a few years ago and the solution is simpler than one might expect. MS Office 2007 free download full version direct download link. It is full offline installer of MS Office 2007 for windows 32 bit / 64 bit. MS Office 2007 Overview. Developed by Microsoft, MS Office 2007 is a new version in the office suites family. It is also referred as Office 12. The Microsoft Office 2003 Web Services Toolkit brings the power of XML Web services to Microsoft Office 2003 applications. It has been updated to support Office SOAP 3.0, and features improved handling of complex data types.
In the Templates pane, click Excel 2007 Workbook. Name the solution and project WebServiceConsumer and click OK. Creating the Solution.
Visual Studio displays the Visual Studio Tools for Office Project Wizard. Click the option to create a new document of type Excel Workbook and name it WebServiceConsumer. Creating a New Workbook. Click OK to create the solution. Adding a Reference to the Live Search Web Service. This Visual How To uses the Live Search Application Programming Interface (API) Web service that allows applications to submit queries to, and return results from, the Live Search Engine using the SOAP protocol.
Each application that uses the Live Search API requires a unique Application ID, which is supplied by the Developer Provisioning System. The following steps for adding a reference to the Live Search web service require an Application ID. To create a new application ID go to the and click Create an AppId.
Microsoft Office 2007 Web Services Toolkit 2.0 Download
To Add a Reference to the Windows Live Search Web Service. From the Visual Studio Project menu, click Add Service Reference. The Add Service Reference dialog box is displayed.
Add Service Reference. In the Add Service Reference dialog box, click Advanced. The Service Reference Settings dialog box is displayed. Service Reference Settings. Click Add Web Reference. The Add Web Reference dialog box is displayed. Add Web Reference.
Type the following URL in the URL text box where ApplicationId is the Live Search Application ID that was acquired using the process described earlier:. Click Go to retrieve the Web service description. Live Search Web Service Description. Leave the Web reference name as net.live.search.api. Click Add Reference to add the Web reference to the project.
Adding Code that Calls the Web Service and Inserts Results. Right-click the WebServiceConsumer project in the Visual Studio Solution Explorer.
Click Add and then click New Item. If the Solution Explorer is not visible, click View, then click Solution Explorer. In the Add New Item dialog box, in the Categories window, click Office and then, in the Templates window, click Ribbon (Visual Designer). Name the Fluent UI source file WebServiceRibbon.cs or WebServiceRibbon.vb depending on the language you use and click Add.
Add Ribbon Customization. From the Office Ribbon Controls group of the Visual Studio Toolbox, drag an EditBox and Button control to the Ribbon designer surface.
Microsoft Toolkit Windows 10 Download Free
Add Controls to Ribbon. Edit the properties of the EditBox, Button and RibbonGroup controls and set them to the following values: EditBox – Name = SearchTermBox, Label = Search Term Button – Name = SearchButton, Label = Search Ribbon Group – Name = WebServiceGroup, Label = Web Service Figure 10. Ribbon Controls. To add a button-click handler, double-click Search. Visual Studio opens the WebServiceRibbon.vb or WebServiceRibbon.cs file and displays the SearchButtonClick method. Add the following code to the body of the SearchButtonClick method.